Pentru afisarea articolelor din Categoria X, in pagina-noua.php adaugi codul urmator:
Cod:
<?php global $post; query_posts('cat=1&posts_per_page=10');?>
<?php if ( have_posts() ) : ?>
<?php while (have_posts()) : the_post(); ?>
<a href="<?php the_permalink() ?>" title="Legatura permanenta la <?php the_title(); ?>"><?php the_title(); ?></a>
<?php the_content();?>
<?php endwhile; ?>
<?php else : ?>
<?php endif; ?>
<?php wp_reset_query();?>
Codul afiseaza o lista cu cele mai recente 10 articole din categoria 1 (category id = 1)