1
2
3
4
五
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25 |
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' ); |
wpb_popular_tags
并在文本小部件中启用短代码。
您现在可以[wpb_popular_tags]
在任何帖子,页面或小部件中添加短代码,以显示最常用的标签。