我需要得到后流行标签。这是我从中发现的https://codex.wordpress.org/Function_Reference/wp_tag_cloud
$tag = wp_tag_cloud( \'smallest=8&largest=22&number=2&orderby=count&format=array\' );
以下是Wordpress网站的一个示例:
Cloud displayed under Popular Tags title
<?php if ( function_exists( \'wp_tag_cloud\' ) ) : ?>
<h2>Popular Tags</h2>
<ul>
<li><?php wp_tag_cloud( \'smallest=8&largest=22\' ); ?></li>
</ul>
<?php endif; ?>
我不理解此参数的含义,即最小值=8&;最大值=22,这个例子是我需要的吗?