cleaner80 adlı üyeden alıntı: mesajı görüntüle
Tema özel tasarım ve editlenmiş galiba. manset.php nin içeriğini buraya eklerseniz bi bakalım.
yok hocam özel tasarım değil siteyi taşımadan önce herhangi bir sorun yoktu taşıdıktan sonra oldu

<?php
$resim 	= mysql_query("SELECT * FROM wp_postmeta LEFT OUTER JOIN wp_posts ON wp_postmeta.post_id = wp_posts.id Where wp_postmeta.meta_key='manset' ORDER By wp_postmeta.post_id DESC Limit 0,5");
		for ($j=0; $niphell=mysql_fetch_array($resim); $j++){
		$ust .= '<div class="contentdiv"><a href="'.get_permalink($niphell[post_id]).'" rel="bookmark"><img src="'.$niphell[meta_value].'" alt="" /></a>
					<h2 class="featuredTitle"><a href="'.get_permalink($niphell[post_id]).'" rel="bookmark">'.$niphell[post_title].' &raquo;</a></h2>
				</div>
				';
		$alt .='<a href="#" class="toc"><img src="'.$niphell[meta_value].'" alt="" width="67" height="42"/></a>
		';
		}


echo '<!-- featured entries -->
			<div id="slider2" class="sliderwrapper">
			';
echo $ust;
echo '</div><div id="paginate-slider2" class="pagination">
';
echo $alt;
echo '<div class="clear"></div>	
			</div>

';
echo '<script type="text/javascript">featuredcontentslider.init({
	id: "slider2",  //id of main slider DIV
	contentsource: ["inline", ""],  //Valid values: ["inline", ""] or ["ajax", "path_to_file"]
	toc: "markup",  //Valid values: "#increment", "markup", ["label1", "label2", etc]
	nextprev: ["", ""],  //labels for "prev" and "next" links. Set to "" to hide.
	revealtype: "mouseover", //Behavior of pagination links to reveal the slides: "click" or "mouseover"
	enablefade: [true, 0.4],  //[true/false, fadedegree]
	autorotate: [true, 4000],  //[true/false, pausetime]
	onChange: function(previndex, curindex){  //event handler fired whenever script changes slide
		//previndex holds index of last slide viewed b4 current (1=1st slide, 2nd=2nd etc)
		//curindex holds index of currently shown slide (1=1st slide, 2nd=2nd etc)
	}
})</script><!-- End of featured entries -->';
?>