Skip to content

Instantly share code, notes, and snippets.

@loorlab
Created March 5, 2017 17:04
Show Gist options
  • Save loorlab/eb6c3118a7156f9aabbed9a097c8ac79 to your computer and use it in GitHub Desktop.
Save loorlab/eb6c3118a7156f9aabbed9a097c8ac79 to your computer and use it in GitHub Desktop.
Disable Tags WordPress
<?php
// Disable Tags Dashboard WP
add_action('admin_menu', 'my_remove_sub_menus');
function my_remove_sub_menus() {
remove_submenu_page('edit.php', 'edit-tags.php?taxonomy=post_tag');
}
// Remove tags support from posts
function myprefix_unregister_tags() {
unregister_taxonomy_for_object_type('post_tag', 'post');
}
add_action('init', 'myprefix_unregister_tags');
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment