Кошка = 267 - это место, где вы выбираете свою категорию, но вы должны иметь цикл для размещения сообщений на странице.
<?php query_posts('cat=267') ?>
<?php while (have_posts()) : the_post(); ?>
<div id="post" <?php post_class(); ?>>
<h2 class="entry-title"><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a> <?php edit_post_link( __( 'Edit', 'redlust' ), '<span class="edit-link">', '</span>' ); ?></h2>
<p class="post-meta">Posted in <?php the_category(', ') ?>, on <?php the_time('F jS, Y'); ?>, by <?php the_author_meta(display_name); ?> <strong>|</strong> <?php comments_popup_link('No Comments »', '1 Comment »', '% Comments »'); ?></p>
<div class="entry-content">
<?php the_content('Read the rest of this entry »'); ?>
<?php wp_link_pages( array( 'before' => '<div class="page-link">' . __( 'Pages:', 'redlust' ), 'after' => '</div>' ) ); ?>
</div><!-- .entry-content -->
</div>
<?php endwhile; ?>