Новости

<?php if ( have_posts() ) : query_posts(array('posts_per_page' => 1, 'cat' => 4)); ?>
    <?php while (have_posts()) : the_post(); ?>
        <h2>
            <a href="<?php the_permalink(); ?>">
                <?php the_title(); ?>
            </a>
        </h2>
        <?php the_content(); ?>
    <?php endwhile; ?>
<?php endif; wp_reset_query(); ?>