• Hi Everyone,

    I’m trying to exclude a certain category form my WP homepage. I found the below code on the internet but unfortunately it’s not working. I’m adding the syntax to the functions.php page in my theme but it’s not working. Can anyone help me with this? Thanks

    // How to hide certain categories from your homepage
    // https://wpmayor.com/how-to-hide-or-remove-categories-from-a-wordpress-homepage/
    function exclude_category_home( $query ) {
    if ( $query->is_home ) {
    $query->set( 'cat', '-8' );
    }
    return $query;
    }
    
    add_filter( 'pre_get_posts', 'exclude_category_home' );

    The page I need help with: [log in to see the link]

Viewing 6 replies - 1 through 6 (of 6 total)
Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘Excluding category form home page code not working?’ is closed to new replies.