How to remove tag cloud from taxonomy admin edit page?

On the page where one adds/removes/modifies taxonomies, what would I need to add to my functions.php file to remove the tag cloud?

Related posts

Leave a Reply

2 comments

  1. You can do it like this, if you want to remove it for all taxonomy pages

    add_filter( 'wp_tag_cloud', 'remove_tag_cloud', 10, 2 );
    
    function remove_tag_cloud ( $return, $args )
    {
            return false;
    }