WordPress and buddypress programming

hide your posts or pages from RSS feeds

Viewing 0 reply threads
  • Author
    Posts
    • #4340
      Michael Mc
      Keymaster
      @mkmcst

      `function exclude_single_posts_feed($query) {
      if ($query->is_feed() && $query->is_main_query()) {
      $query->set(‘post__not_in’, array(69489, 69177,68878,68736));
      }
      }
      add_action(‘pre_get_posts’, ‘exclude_single_posts_feed’);

Viewing 0 reply threads
  • You must be logged in to reply to this topic.