我正在尝试列出在wordpress中添加的所有tags
,但它只显示已经使用过的那些。同样的事情发生在categories
上。
我尝试使用所有tags
和categories
发布一条帖子而不发布,但所有tags
和categories
仅在发布时显示。
foreach($posttags as $tag) {
$tags= $tag->name;
$naampje1 = $tags . get_the_ID();
echo $tags. ': ';
echo '<input type="checkbox" name="'. $naampje1 .'">';
echo str_repeat(' ', 4);
}
答案 0 :(得分:0)
试试这个,
$tags = get_tags();
$html = '<div class="post_tags">';
foreach ( $tags as $tag ) {
if(tag->count <= 0){
$tag_link = get_tag_link( $tag->term_id );
$html .= "<a href='{$tag_link}' title='{$tag->name} Tag' class='{$tag->slug}'>";
$html .= "{$tag->name}</a>";
}
}
$html .= '</div>';
echo $html;
希望这会对你有所帮助。
欲了解更多信息,请访问,
答案 1 :(得分:0)
thnx sunil的答案
显然wordpress隐藏了空术语,这些行有效。
T