Get Even More Visitors To Your Blog, Upgrade To A Business Listing >>

How to Disable both category and tag feeds without WordPress plugin?

How To Disable Both Category And Tag Feeds Without WordPress Plugin?

Add the following code in your theme’s functions.php file or site-specific Wordpress plugin also known as WordPress Custom Functions Plugin.

It is highly recommended to create a child theme and add custom codes in the child theme’s functions.php file, so you will never lose your changes when you update your theme.

    function disable_category_tag_feed () {
    return;
    }
    add_filter('category_feed_link', 'disable_category_tag_feed');

Source: lostsaloon

Related Tutorials:

  • VIdeo: How to create site-specific custom functions plugin in WordPress
  • Video: How to create WordPress child Theme

The post How to Disable both category and tag feeds without WordPress plugin? appeared first on JustLearnWP.



This post first appeared on Top 5 WooCommerce Plugins For Small Business, please read the originial post: here

Share the post

How to Disable both category and tag feeds without WordPress plugin?

×

Subscribe to Top 5 Woocommerce Plugins For Small Business

Get updates delivered right to your inbox!

Thank you for your subscription

×