Removing Tag Cloud from Edit Page
-
Hi, thanks for the great plugin. I just need a little bit more help regarding tag cloud on the edit page. My website is a multi-author web and I would like for the tag cloud to be removed so people will not have the access to popular/tag cloud in the back end. I tried the below code and all are not working so great.
The taxonomy slug that I’d like to have it’s tag cloud hidden is “creator”
$labels = array('name' => 'creator', 'popular_items' => NULL); register_taxonomy('creator', 'author', array('show_tagcloud' => false, 'hierarchical' => false, 'labels' => $labels, 'query_var' => true, 'show_in_menu' => false, 'choose_from_most_used' => NULL,));and
add_filter( 'wp_tag_cloud', 'remove_tag_cloud', 10, 2 ); function remove_tag_cloud ( $return, $args ) { return false; }So, anyone can help me with this issue?
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
The topic ‘Removing Tag Cloud from Edit Page’ is closed to new replies.