kullandığınız tema dostasındaki header.php ye bu manşet dosyasını nereye kurduysanız o adresteki css ve java dosyalarını head tagları arasına ekleyiniz
şuana kadar ilk kuramadıım manşett sistemi anlaamdım gitti ya
<style>
/*ana manset*/
.manset_dis { width:598px; height:365px; position:relative; margin-bottom:10px;}
.manset_list_image {width:598px; height:320px; overflow:hidden;}
.manset_list_image li {width:598px; height:320px;}
.manset_list_image li a img{width:598px; height:320px; }
.manset_list_button { width:598px; height:40px; background:url(images/manset-bg.png); position:relative;}
.manset_list_button li{float:left; width:35px; height:40px; background:url(images/cizgi.png) no-repeat right center;}
.manset_list_button li a {display:block; width:35px; height:40px; text-align:center; font: bold 16px calibri; line-height:40px;}
.manset_list_button li a:hover,.ana_manset_list_button li.aktif a {background:url(images/rakam-bg.png); color:#fff;}
.tum_manset { position:absolute; right:18px; top:9px;}
.tum_manset a {font: bold 17px calibri; color:#d10000;}
.tum_manset a:hover{ text-decoration:underline;}
.manset_list_title { position:absolute; left:0; top:270px; width:578px; height:30px; padding:10px; background:url(images/transparan.png); overflow:hidden; }
.manset_list_title li { width:598px; height:50px; }
.manset_list_title li a {font: bold 23px calibri; color:#fff}
</style>
<script type="text/javascript">
var Slider = 0;
$.Slider = function(toplam){
$(".manset_list_button li").removeClass("aktif");
$(".manset_list_image li").hide();
$(".manset_list_title li").hide();
if (Slider < toplam-1){
Slider++;
$(".manset_list_button li:eq("+Slider+")").addClass("aktif");
$(".manset_list_image li:eq("+Slider+")").show();
$(".manset_list_title li:eq("+Slider+")").show();
}else {
$(".manset_list_button li:first").addClass("aktif");
$(".manset_list_image li:first").show();
$(".manset_list_title li:first").show();
Slider = 0;
}
}
var toplamLi = $(".manset_list_image li").length;
var interval = setInterval('$.Slider('+toplamLi+')', 5000);
$(".manset_list_image").hover(function(){
clearInterval(interval);
}, function(){
interval = setInterval('$.Slider('+toplamLi+')', 5000);
});
$(".main_list li:last").css("background","none");
$(".manset_list_image li").hide();
$(".manset_list_image li:first").show();
$(".manset_list_title li").hide();
$(".manset_list_title li:first").show();
$(".manset_list_button li:first").addClass("aktif");
$(".manset_list_button li").hover(function(){
var indis = $(this).index();
$(".manset_list_image li").hide();
$(".manset_list_title li").hide();
$(".manset_list_button li").removeClass("aktif");
$(this).addClass("aktif");
$(".manset_list_title li:eq("+indis+")").show();
$(".manset_list_image li:eq("+indis+")").show();
$(".manset_list_button li:eq("+indis+")").addClass("aktif");
});
</script>
<!--
Wordpress Manset Eklentisi
<!--manset baslangıcı -->
<div class="manset_dis">
<ul class="manset_list_image">
<!--manset resim kategori bilgileri kısmı / kategori id numarasını değiştiriniz-->
<?php $recent = new WP_Query("showposts=15&cat=61"); while($recent->have_posts()) : $recent->the_post();?>
<li>
<?php
if (has_post_thumbnail()) {
$attachment_id = get_post_thumbnail_id($post->ID);
$image_attributes = wp_get_attachment_image_src( $attachment_id );
$large_image_url = wp_get_attachment_image_src( get_post_thumbnail_id(), 'large');
?>
<a href="<?php the_permalink();?>" rel="bookmark">
<img src="<?php echo $large_image_url[0]; ?>" width="<?php echo $large_image_url[1]; ?>" height="<?php echo $large_image_url[2]; ?>" alt="<?php the_title(); ?>" />
</a>
<?php
}else {
?>
<a href="<?php the_permalink();?>" rel="bookmark">
<img src="<?php bloginfo('template_url')?>/images/resimbulunumadi.png" width="180" height="160" alt="<?php the_title(); ?>" /><!--buradaki adrese bir tane resim bulunamayınca gösterilecek resim için resimbulunamadi.png ismi ile resim ekleyiniz -->
</a>
<?php } ?>
</li>
<?php endwhile; ?>
</ul>
<!--manset sayfalama bilgileri kısmı / kategori id numarasını giriniz-->
<ul class="manset_list_title">
<?php $recent = new WP_Query("showposts=15&cat=61"); while($recent->have_posts()) : $recent->the_post();?>
<li><a href="<?php the_permalink();?>" rel="bookmark" target="_blank"><?php echo mb_substr (the_title('','',false), 0 , 50); ?></a></li>
<?php endwhile; ?>
</ul>
<ul class="manset_list_button">
<?php
$sayi = 1;
?>
<!--manset haber başlıkları bilgileri kısmı / kategori id numarasını değiştiriniz-->
<?php $recent = new WP_Query("showposts=15&cat=61"); while($recent->have_posts()) : $recent->the_post();?>
<li><a href="<?php the_permalink();?>"><?php echo $sayi; ?></a></li>
<?php $sayi++; ?>
<?php endwhile; ?>
<div class="tum_manset"><a href="<?php bloginfo('home'); ?>/manset" rel="bookmark" target="_blank">Tüm Haberler</a></div>
<div style="clear:both"></div>
</ul>
</div>
<!--#manset bitisi-->head taklarının arasına yapamadım hepsini aynı manşet .php dosyasında bırleştirdim yine olmadı