Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
カスタム分類法を使用したカスタム投稿タイプがあり、現在の投稿の用語名を div に表示したいと考えています。
各投稿では、役立つ場合は 1 つの用語のみを選択しています。
申し訳ありませんが、私は答えを見つけました。1 時間かけて検索し、最終的に 5 分で解決策を見つけました。これは私のコードです:
<?php $term_list = wp_get_post_terms($post->ID, 'tipo-de-cursos', array("fields" => "names")); echo $term_list[0]; ?>