web-dev-qa-db-ja.com

カスタム投稿タイプからすべてのタグを一覧表示する

カスタム投稿タイプで使用されているすべてのタグを表示するソリューションを探しています。各タグにjQueryコードを追加するので、それらすべてをリストしたいだけです。 :)

5
markyeoj

wp_get_object_terms あなたの答えがあるでしょう。

wp_get_object_terms( $post_ids, 'post_tag', $optional_args );

get_the_terms もありますが、これはもっと簡単ですが、仕事を終わらせることもできます。

get_the_terms( $id, 'post_tag');

6
Cristian

the_terms()

the_tags()the_terms()はどちらもget_the_term_list()を使いますが、違いはthe_tags()はデフォルトでpost_tagに代入されるということです。

それらをwp-includes/category-template.phpで見る

2
Keshav Infotech