• How can I change the”Recent Posts” section on the home page to only display posts from one specific category rather than all posts?

Viewing 2 replies - 1 through 2 (of 2 total)
  • I’d rather suggest you to use plugin for that.

    Theme Author Template Express

    (@danstriker)

    Hello,

    open up the custom_home.php file and replace the following code:

    <?php $the_query = new WP_Query(
                  array(
                    'showposts' => 4,
                    'post__not_in' => get_option("sticky_posts"),
                  ));
                ?>

    with this:

    <?php $the_query = new WP_Query( 'cat=catname' );
            ?>

    Replace the catname with the your category name.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘How to change home posts to only display one category?’ is closed to new replies.