我想在我的WordPress中獲得所有帖子標籤。下面是我在頁腳代碼:如何獲取WordPress中的所有帖子標籤?
<?php
global $wpdb;
$tags = get_terms('post_tag');
echo '<ul>';
foreach ($tags as $tag)
{
echo '<li>' . $tag->name . '</li>';
}
echo '</ul>';
?>
與上面的代碼,我只得到一個特定的崗位,而不是在WordPress標籤的完整列表相關聯的標籤。
任何幫助將不勝感激。 謝謝。
你可以用戶get_tags() –
檢查這個https://codex.wordpress.org/Function_Reference/get_tags –