Rimuove supporto ai TAG nei post #remove #tag #article #post
<?php | |
// 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