Works only with the total theme Framework. If a post has the custom Meta "enym_custom_meta"…
WordPress: Remove support for tags for posts
//post: remove tags
add_action( 'init', 'unregister_tags' );
function unregister_tags() {
unregister_taxonomy_for_object_type( 'post_tag', 'post' );
}
Comments (0)