怎样显示或去掉wordpress标签云显示文章数量

找了好久,才找到这个方法,原来藏着呢

怎样显示或去掉wordpress标签云显示文章数量

打开 wp-includes/category-template.php 搜索 wp_tag_cloud

function wp_tag_cloud( $args = '' ) {
	$defaults = array(
		'smallest' => 8, 'largest' => 22, 'unit' => 'pt', 'number' => 45,
		'format' => 'flat', 'separator' => "\n", 'orderby' => 'name', 'order' => 'ASC',
		'exclude' => '', 'include' => '', 'link' => 'view', 'taxonomy' => 'post_tag', 'post_type' => '', 'echo' => true,
		'show_count' => 1,
	);

其中’show_count’ => 1,这个值是控制标签后面的数字的,1为显示,0为不显示。

2
蜗牛不带伞
蜗牛不带伞
发表于2018-07-16 3:03
标签 tagwordpress显示tag数量标签 归档于 wordpress