hab das Problem jetzt doch selbst gelöst bekommen ..
ich lasse die query_posts in der sidebar einfach weg und mach dafür die Abfragen direkt auf der DB
in etwa so ..
PHP
$sql = "SELECT * FROM `wp_post2cat`, `wp_posts` WHERE `category_id` = 3 and wp_post2cat.post_id = wp_posts.id and wp_posts.post_status = 'publish' order by wp_posts.post_date DESC LIMIT 0 , 5";
$myPost = $wpdb->get_results($sql);
if (sizeof($myPost) > 0 )
{
foreach ($myPost as $myData) {
echo $myData->post_title . "<br />";
}
}
Alles anzeigen
Schönes WE euch allen ..
Gruß Achim