Custmozing “tagging display”
-
I’m trying to figure out which php function I yank out of the “sidebar” to move the “tagging” display to a different place in my wordpress template since it’s not well suited to the “sidebar” due to it’s every growing nature.
Thanks!
I believe I located it:
function wp_widget_tag_cloud($args) {
extract($args);
$options = get_option(‘widget_tag_cloud’);
$title = empty($options[‘title’]) ? __(‘Tags’) : $options[‘title’];echo $before_widget;
echo $before_title . $title . $after_title;
wp_tag_cloud();
echo $after_widget;
}
- The topic ‘Custmozing “tagging display”’ is closed to new replies.