slm arkadaşlar wordpreste manşet eklentisinde konu açınca manşette hep son açılan konular çıkıyor ben son açılan konuların yerine sabit manşette programlar adı altında eklenen konuları göstermek istiyorum yani kısaca manşette sadece programlar kategoresinin yazılarını göstermesini istiyorum yardımlarınızı bekliyorum saygılar..
<div class="mansetbox"><?php
echo '<!--
Wordpress Manset Eklentisi
NipHeLL Tarafindan Kodlanmistir
bozlak216@gmail.com
-->';
$resim = mysql_query("SELECT * FROM ".$table_prefix."postmeta LEFT OUTER JOIN ".$table_prefix."posts ON ".$table_prefix."postmeta.post_id = ".$table_prefix."posts.id Where ".$table_prefix."postmeta.meta_key='thumbnail' ORDER By ".$table_prefix."postmeta.post_id DESC Limit 0,4");
for ($j=0; $niphell=mysql_fetch_array($resim); $j++){
$ust .= '<li><a href="'.get_permalink($niphell[post_id]).'"><img src="'.$niphell[meta_value].'" alt="'.$niphell[post_title].'" /></a></li>';
$orta .= '<li class="current">'.$niphell[post_title].'</li>';
$alt .='<li class="current"><img src="'.$niphell[meta_value].'" alt="'.$niphell[post_title].'" /></li>';
}
?>
<div id="ifocus">
<div id="ifocus_pic">
<div id="ifocus_piclist" style="left:0; top:0;">
<ul>
<?php echo $ust; ?>
</ul>
</div>
<div id="ifocus_opdiv"></div>
<div id="ifocus_tx">
<ul>
<?php echo $orta; ?>
</ul>
</div>
</div>
<div id="ifocus_btn">
<ul>
<?php echo $alt; ?>
</ul>
</div>
</div>
</div>