如何从所有已发布的帖子中获取所有标签名称(带有 ID 和计数)?
我知道有,wp_tag_cloud
但我只想要所有标签的数组。
签出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' );
这与标签计数一起对我有用。
<?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 }?>