【发布时间】:2018-01-27 23:24:33
【问题描述】:
我找到了这个代码 (http://devotepress.com/faqs/display-popular-tags-wordpress) 并使用了短代码 ([wpb_popular_tags]) 但我没有看到任何结果。
如何使用此代码显示最流行的 WooCommerce 产品标签?
这是他们的代码:
function wpb_tag_cloud() {
$tags = get_tags();
$args = array(
'smallest' => 10,
'largest' => 22,
'unit' => 'px',
'number' => 10,
'format' => 'flat',
'separator' => " ",
'orderby' => 'count',
'order' => 'DESC',
'show_count' => 1,
'echo' => false
);
$tag_string = wp_generate_tag_cloud( $tags, $args );
return $tag_string;
}
// Add a shortcode so that we can use it in widgets, posts, and pages
add_shortcode('wpb_popular_tags', 'wpb_tag_cloud');
// Enable shortcode execution in text widget
add_filter ('widget_text', 'do_shortcode');
【问题讨论】:
标签: php wordpress woocommerce shortcode custom-taxonomy