WordPress and buddypress programming

Use the following code to hide posts and pages from the blogroll:

Viewing 0 reply threads
  • Author
    Posts
    • #4338
      Michael Mc
      Keymaster
      @mkmcst
      function exclude_single_posts_home($query) {
      	 if ($query->is_home() && $query->is_main_query()) {
      		  $query->set('post__not_in', array(69489, 69177,68878,68736));
      	  }
      }
      add_action('pre_get_posts', 'exclude_single_posts_home');
Viewing 0 reply threads
  • You must be logged in to reply to this topic.