我正在尝试从wordpress数据库中获取一些标签,这些标签没有分配给任何帖子,所以它们的帖子计数是0。我使用的代码只选择分配了1个或更多帖子的标签...
<?php
$args = array(
'smallest' => 12,
'largest' => 24,
'unit' => 'px',
'format' => 'flat',
'orderby' => 'name',
'order' => 'DESC',
'exclude' => null,
'include' => null,
'topic_count_text_callback' => 'default_topic_count_text',
'link' => 'view',
'taxonomy' => 'post_tag',
'echo' => true,
'child_of' => null,
'show_count' =>1
);
?>
我如何才能获得分配了0个帖子的标签来显示?
https://stackoverflow.com/questions/57823136
复制