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

How to Hide or Remove Tags Menu From WordPress Admin Dashboard

How To Hide Or Remove Tags Menu From WordPress Admin Dashboard

    function wpdocs_unregister_tags_for_posts() {
     unregister_taxonomy_for_object_type( 'post_tag', 'post' );
    }
    add_action( 'init', 'wpdocs_unregister_tags_for_posts' );

I am going to add above code in my site-specific plugin, You can add in child theme’s functions.php file.

Site Specific Plugin Tutorial: //justlearnwp.com/wordpress-functions-php-plugin/
WordPress Child Theme Tutorial: //justlearnwp.com/wordpress-child-theme/

The post How to Hide or Remove Tags Menu From WordPress Admin Dashboard 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 Hide or Remove Tags Menu From WordPress Admin Dashboard

×

Subscribe to Top 5 Woocommerce Plugins For Small Business

Get updates delivered right to your inbox!

Thank you for your subscription

×