Site logo

[Support request] How Can I Exclude Category From Showing Up on Homepage?

Home Forums Support [Support request] How Can I Exclude Category From Showing Up on Homepage?

Home Forums Support How Can I Exclude Category From Showing Up on Homepage?

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #1894892
    Daniel

    Hello

    I’m trying to exclude one category & sub-categories from the homepage, I have found a code online to do it but where do I have to paste the code to?

    Here is the code:

    function exclude_category_home( $query ) {
    if ( $query->is_home ) {
    $query->set( 'cat', '-5' );
    }
    return $query;
    }
     
    add_filter( 'pre_get_posts', 'exclude_category_home' );
    #1894898
    Leo
    Staff
    Customer Support

    Hi there,

    Try one of these methods here:

    Adding PHP: https://docs.generatepress.com/article/adding-php/

    Code Snippets is the easiest if you aren’t using a child theme already.

Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.