category.php, taxonomy-{tax_slug}.php の所謂、カテゴリー・タクソノミの一覧ページで選択されているカテゴリー名・タクソノミー名を取得したい WordPress v6.6.1 🙅 get_the_terms を使うをバグが発生しうる <?php function get_tax_name($tax_slug = 'category') { global $post; $terms = get_the_terms($post, $tax_slug); return $termObj[0]->name ?? ''; } 上記のような get_the_terms を…