The custom taxonomies/tags are they inserted in the same pool as default tags? in order for the Tags widgets to pick them up or are they in separate database entries?
The custom taxonomies/tags are they inserted in the same pool as default tags? in order for the Tags widgets to pick them up or are they in separate database entries?
The wp_tag_cloud() function can also accept a "taxonomy" parameter, if you want to display a cloud of terms for your custom taxonomy.
http://codex.wordpress.org/Function_Reference/wp_tag_cloud
The default value for default tags is 'taxonomy' => 'post_tag'.
It depends on your widget if it lets you configure the taxonomy parameter.
For multiple tag-types in one cloud, use e.g. 'taxonomy' => array('post_tag', 'your_custom_post_taxonomy').
cool i give it a try later
You must log in to post.