Maintaining a separate posts page for certain categories and don’t show those on home page
The best way would be to just add a cats category and filter those out from the home page using the pre_get_posts filter. function kill_kittens( $query ) { if ( $query->is_home ) { $query->set( ‘cat’, ‘-23’ ); //assumes the cats category id is 23 } } add_action( ‘pre_get_posts’, ‘kill_kittens’ ); For your cats page you … Read more