[wp-testers] Core Widget: tag cloud

Philip M. Hofer (Frumph) philip at frumph.net
Sun May 23 11:44:16 UTC 2010


The tag cloud widget has 'taxonomy' in there, but it's not reading the 
custom taxonomies, it probably should so we dont have to reinvent the wheel 
right?

I do have:

'show_tagcloud' => true,

in the register_taxonomy() area for it per documentation here: 
http://codex.wordpress.org/Function_Reference/register_taxonomy

But thats for the tagcloud showing in the UI itself, so i'm thinking that 
the widget itself isnt finding the custom taxonomies, .. going to check 
other widgets as well in a bit.

This is my register_taxonomy:

register_taxonomy('cast-guest',array('casts'), array(
'hierarchical' => false,
'labels' => $labels,
'public' => true,
'show_ui' => true,
'query_var' => true,
'show_tagcloud' => true,
'rewrite' => array( 'slug' => 'cast-guest' ),
));


- Phil 



More information about the wp-testers mailing list