Alttaki kodlarla wordpress te kategorileri ve içerisinde kaç adet yazı olduğunu listeledim fakat linke tıklayınca sayfada hiçbir yazı gözükmüyor neden acaba ?



<?php if (is_category()) {
$this_category = get_category($cat);
if (get_category_children($this_category->cat_ID) != "") {
echo "<ul>";
wp_list_categories('orderby=id&depth=1&show_count= 0&title_li=
&use_desc_for_title=1&child_of='.$this_category->cat_ID);
echo "</ul>";
}
}

else{ ?>
<ul>
<?php
$post;
$myposts = get_posts('category=.$this_category->cat_ID&numberposts=5&order=desc');
foreach ($myposts as $post) : setup_postdata($post);
?>
<li><a href="<?php the_permalink();?>"><?php the_title(); ?></a></li>
<?php endforeach; ?>
</ul>
<?php }
?>