• tjhinn

    (@tjhinn)


    Hi all,

    my site is at https://www.getaway.co.id

    I am trying to remove a particular category from the front page. Can someone help me with that?

    I have this “News” category that is already featured at the top of the page, and I want it to be excluded from the front page list of “Latest Articles” as I feel they are quite redundant.

    I am also thinking of removing the “Spots” category that are already featured at the bottom footer.

    Thanks much.

    -Nik

Viewing 1 replies (of 1 total)
  • in functions.php add this:

    add_action( 'pre_get_posts', function( $query )
    {
        if ( $query->is_home() && $query->is_main_query() ) {
            $query->set( 'cat', '-31' ); // id of category to remove
        }
    });
Viewing 1 replies (of 1 total)
  • The topic ‘Removing a particular Category from Front page’ is closed to new replies.