[Resolved] Hide Category

Home Forums Support [Resolved] Hide Category

Home Forums Support Hide Category

Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #1352039
    Kumari

    Hi There

    I was wondering if it is at all possible to hide a specific category from showing up on my site?
    I have some archived content (blog posts) that I need to keep due to backlinks and keywords etc but I do not want these to show up when people are browsing my site.

    Please let me know if it is possible to do this without using a plugin?

    Thanks in advance.

    #1352086
    Tom
    Lead Developer
    Lead Developer

    Hi there,

    Where/how would they currently find the category? When searching for posts?

    #1352110
    Kumari

    They could possibly come across it using ‘post navigation’ and when searching for posts.

    I don’t mind it showing up with search but would prefer that it not show up via post navigation.

    #1352902
    Tom
    Lead Developer
    Lead Developer

    In that case, you should be able to do this:

    add_action( 'pre_get_posts', function( $query ) {
        if ( $query->is_main_query() ) {
            $query->set( 'cat', -10 );
        }
    } );

    You just need change 10 to the ID of the category you’re wanting to exclude.

    #1353860
    Kumari

    This works perfectly! Thank you SO much!

    #1354180
    Tom
    Lead Developer
    Lead Developer

    You’re welcome 🙂

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