我的代码无效,因为云中的链接仅链接到嵌入了简码的页面。
这是我的代码,我弄错了:
function bp_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_shortcode('bp_popular_tags', 'bp_tag_cloud');