Mika MAtikainen

Apr 15, 2020 · 4 min read

How can I remove or hide categories from the homepage in WordPress?


function wpsc_exclude_category_home( $query ) {

if ( $query->is_home ) {

$query->set( 'cat', '-5, -34' );

}

return $query;

}
7
 

add_filter( 'pre_get_posts', 'wpsc_exclude_category_home' );


 

Subscribe To Our Newsletter

Join our mailing list to receive the latest news and updates from our team.

You have Successfully Subscribed!

Share This