我使用一个小代码显示当前类别的标记列表,如下所示:
<?php
$custom_query = new WP_Query(\'posts_per_page=-1&category_name=overnachten\');
if ($custom_query->have_posts()) :
while ($custom_query->have_posts()) : $custom_query->the_post();
$posttags = get_the_tags();
if ($posttags) {
foreach($posttags as $tag) {
$all_tags[] = $tag->term_id;
}
}
endwhile;
endif;
$tags_arr = array_unique($all_tags);
$tags_str = implode(",", $tags_arr);
$args = array(
\'smallest\' => 12,
\'largest\' => 12,
\'unit\' => \'px\',
\'number\' => 0,
\'format\' => \'list\',
\'include\' => $tags_str
);
wp_tag_cloud($args);
?>
它当前显示某个类别中帖子使用的标签。我想使用上面的代码显示我当前所在类别中的所有标记。使用上述代码或更好的方法,这将如何实现?