WordPress and buddypress programming

how to block your rss feeds in wordpress

Viewing 0 reply threads
  • Author
    Posts
    • #646
      michael mc
      Keymaster
      @michael

      Simple way to disable RSS Feeds is to add below to functions.php file.

      add_action( 'feed_links_show_posts_feed', '__return_false', - 1 );
      add_action( 'feed_links_show_comments_feed', '__return_false', - 1 );
      remove_action( 'wp_head', 'feed_links', 2 );
      remove_action( 'wp_head', 'feed_links_extra', 3 );
Viewing 0 reply threads
  • You must be logged in to reply to this topic.