I'm new to WordPress. I have my site (CMS) divided to several pages in a tree hierarchy. I'm trying to view posts in a specific category within a subpage. But for some reason event the simple "the loop":
<?php
if (have_posts()) :
while (have_posts()) :
the_post();
the_content();
endwhile;
endif;
?>
Shows ONLY (!!) the page content and no posts at all ... How can i do that?
10x.