[Resolved] Hide posts that belong to a certain category from the post navigation links

Home Forums Support [Resolved] Hide posts that belong to a certain category from the post navigation links

Home Forums Support Hide posts that belong to a certain category from the post navigation links

Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #1669937
    George

    I am currently hiding posts that belong to a certain category from the blog page by using the following code:

    add_filter('pre_get_posts', 'excludeCat');
    function excludeCat($query) {
          if ( $query->is_home ) {
                $query->set('cat', '-45');
          }
          return $query;
    }

    Is there a way to add to the query to also hide the posts from the post navigation links so that they don’t get displayed either?

    #1669952
    George
    #1669987
    Leo
    Staff
    Customer Support

    Glad to hear 🙂

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