//logged in shortcode function check_user ($params, $content = null){ //check tha the user is logged…
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' );
}