Viewing 1 replies (of 1 total)
  • Hi richconner. You could add this function to your child theme functions.php file, where 123 is the category id to include:

    function my_home_category( $query ) {
        if ( $query->is_home() && $query->is_main_query() ) {
            $query->set( 'cat', '123' );
        }
    }
    add_action( 'pre_get_posts', 'my_home_category' );

    More info in the Codex reference.

Viewing 1 replies (of 1 total)
  • The topic ‘Specific Category for Post List Group’ is closed to new replies.