How to remove the tag cloud from custom taxonomy admin page?

A bit late but I just learned how to remove the taxonomy cloud. In your taxonomy label definition change this line

'popular_items' => __( 'Popular Regions' ),

to this

'popular_items' => NULL,

and the tag cloud will no longer appear

Leave a Comment