How to get popular post tags

时间:2015-10-06 作者:user3351236

我需要得到后流行标签。这是我从中发现的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,这个例子是我需要的吗?

1 个回复
SO网友:omer Farooq

它是最常用和最不常用标记的最大和最小字体大小。如果您只想显示流行标签而不是云,那么可以使用格式选项显示为无序列表。

相关推荐

Remove P tags from images

我使用的是WordPress 4.2.2,每次我向wysiwyg添加图像时,它都会将输出的图像包装在段落标记中。我需要去掉这些标签。我在网上找到的所有东西都是从2011年开始的,而且似乎都不起作用。我试着把东西放在函数中。php类:function filter_ptags_on_images($content){ return preg_replace(\'/<p>\\s*(<a .*>)?\\s*(<img .* \\/>)\\s*(<\\/a&g