カスタム投稿タイプで使用されているすべてのタグを表示するソリューションを探しています。各タグにjQueryコードを追加するので、それらすべてをリストしたいだけです。 :)
wp_get_object_terms あなたの答えがあるでしょう。
wp_get_object_terms( $post_ids, 'post_tag', $optional_args );
get_the_terms もありますが、これはもっと簡単ですが、仕事を終わらせることもできます。
get_the_terms( $id, 'post_tag');
the_tags()
とthe_terms()
はどちらもget_the_term_list()
を使いますが、違いはthe_tags()
はデフォルトでpost_tag
に代入されるということです。
それらをwp-includes/category-template.php
で見る