disable feed rss wordpress

Started by AutumnSadness, 09-10-2015, 07:47:20

Previous topic - Next topic

AutumnSadnessTopic starter

Hi
I have a wordpress website and I have disabled feed! because there are some websites that steal my contents by RSS!
And in google webmaster i get alot of server errors because I have disabled the feed!
now, what should i do? does this harm my website? or it is okay?
Thanks
  •  


AutumnSadnessTopic starter

  •  


nancyisabell

Quote from: OutumnSadness on 09-10-2015, 07:47:20
Hi
I have a wordpress website and I have disabled feed! because there are some websites that steal my contents by RSS!
And in google webmaster i get alot of server errors because I have disabled the feed!
now, what should i do? does this harm my website? or it is okay?
Thanks

Hey hello,

Check this two links
1)http://www.wpbeginner.com/wp-tutorials/how-to-disable-rss-feeds-in-wordpress/
2)https://wordpress.org/plugins/disable-feeds/

May be you will get answer for your question.

damponting44

WordPress is fundamentally known by individuals for its effective blogging highlights. RSS Feeds are utilized by individuals to subscribe to your new substance that you post and furthermore to bolster into outsider peruser applications, for example, Feedly. Along these lines they can read your crisp substance in a hurry.

webxerossolutions

There are two methods that you can use to disable feeds in WordPress.

Use Plugin: You can use RSS feed disabler plugins to disable your WordPress RSS feeds.

Manually: Also you can manually change the function.php file in your theme.
you can write the below code in your function.php file,

function wpb_disable_feed() {
wp_die( __('No feed available,please visit 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);
SEO Services

Visit: WebXeros.com
  •