0

如何从所有已发布的帖子中获取所有标签名称(带有 ID 和计数)?

我知道有,wp_tag_cloud但我只想要所有标签的数组。

4

2 回答 2

3

签出get_terms()以检索给定分类中的术语:

http://codex.wordpress.org/Function_Reference/get_terms

例子:

$categories = get_terms( 'category',    'orderby=count&hide_empty=0' );

$tags       = get_terms( 'post_tag',    'orderby=count&hide_empty=0' );

$myterms    = get_terms( 'my_taxonomy', 'orderby=count&hide_empty=0' );
于 2013-06-18T11:26:52.573 回答
0

这与标签计数一起对我有用。

<?php
$tags = get_tags();
if ($tags) {
?><ul class="tags"><?php
foreach ($tags as $tag) {
    echo '<li><a href="' . get_tag_link( $tag->term_id ) . '" 
          title="' . sprintf( __( "View all posts in %s" ), $tag-
          >name ) . '" ' . '>' . $tag->name.' (' . $tag->count . ')</a></li>';
}
echo '<li><a href="#">View All</a><span class="arrow"></span>
</li>'; ?></ul>
<?php }?>   
于 2018-04-27T04:27:50.830 回答