Explore our in-depth
tutorials
crafted by
skilled professionals!

Our Latest News, Advice and Thoughts

How to Disable RSS Feeds in WordPress?

You are here:

RSS is the quick type of Wealthy Web site Abstract is a format for delivering net contents that are altering often, primarily news-related websites, weblogs are makes use of this to publish their contents often on their web sites. let’s have an Concept about how RSS feeds work; RSS feeds are easy textual content information, as soon as it submitted to feed folders, then will enable subscribers to view the content material inside a brief time frame. As we all know RSS feeds have loads of Benefits, however on the identical time, it has Disadvantages additionally. Let’s focus on a few of them:

1) RSS feeds create increased visitors and calls for on the server.

2) Since it’s a new know-how, many websites nonetheless don’t assist RSS.

3) Graphics and pictures don’t seem in all RSS feeds.

4) Publishers can’t decide what number of customers are subscribed to their feed and the frequency of their visits.

5) The id of the supply web site could also be unclear.

By default, there is no such thing as a technique to disable RSS feeds in WordPress, we will do it both through putting in a plugin or manually. Let’s focus on how we will disable RSS feeds from WordPress web sites.

 

Technique-1

On this methodology, we will disable RSS feeds from WordPress by utilizing a plugin known as “Disable Feeds”. First, we have to set up and activate the plugin on WordPress. The plugin will work instantly after activating it when a subscriber request for an RSS feeds then it should redirect to an internet site.

Usually if a consumer request for any RSS feeds then it should redirect to the corresponding HTML web page, we will change this to show 404 error. We are able to configure this on our WordPress Dashboard. Click on on “Readings” beneath “Settings” and you’ll choose the precise one and after making adjustments click on on “Save Adjustments”.

Disable Rss Feed

 

Technique-2

On this methodology we have to edit the WordPress information, additionally be sure that to keep away from any undesirable adjustments on the information, it might break your web site. You’ll be able to merely add under code to your theme’s “capabilities.php” file.

operate wpb_disable_feed()

wp_die( __(‘No feed out there,please go to our <a href=”‘. get_bloginfo(‘url’) .’”>homepage</a>!’) );

add_action(‘do_feed’, ‘wpb_disable_feed’, 1);

add_action(‘do_feed_rdf’, ‘wpb_disable_feed’, 1);

add_action(‘do_feed_rss’, ‘wpb_disable_feed’, 1);

add_action(‘do_feed_rss2’, ‘wpb_disable_feed’, 1);

add_action(‘do_feed_atom’, ‘wpb_disable_feed’, 1);

add_action(‘do_feed_rss2_comments’, ‘wpb_disable_feed’, 1);

add_action(‘do_feed_atom_comments’, ‘wpb_disable_feed’, 1);

This code will merely return an Error Web page saying “No feed out there, please go to our Homepage!”.

 

In case you want any additional assist, please do attain our assist division.

 

 

Leave a Comment