• Resolved Albert1955

    (@albert1955)


    Hello
    I have a landing page and my latest posts are on another page called “Latest News”, with ID=10837. I am trying to exclude all posts from category #11 from being displayed on this page. Is this the correct code as it doesn’t seem to work at all, it is in functions.php in the child theme folder

    function exclude_category( $query ) {
    if ( is_page( 10837 ) ) {
    $query->set( ‘cat’, ‘-11 );
    }
    }
    add_action( ‘pre_get_posts’, ‘exclude_category’ );

    • This topic was modified 7 years, 1 month ago by Albert1955.

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

Viewing 4 replies - 1 through 4 (of 4 total)
Viewing 4 replies - 1 through 4 (of 4 total)

The topic ‘Excluding category posts from certain page’ is closed to new replies.