前提・実現したいこと
●WordPressカスタムポストで作成した投稿ページがあります。
●(プラグインCustom Post Type UIで作成した)タクソノミーとタームがり、タームにはカスタムフィールドを設定
【実現したいこと】
投稿ページにて、
・選択したタームをリンク付きで一覧で出力
・選択したタームのカスタムフィールドを一覧で出力
発生している問題・エラーメッセージ
以下のコードでは何も表示がされないのですが、合っていますでしょうか。
該当のソースコード
カスタム分類(タクソノミー)名:products_cat
表示したいカスタムフィールド名:prdcat_tokucho
$taxonomy = 'products_cat'; $term_slug = get_query_var('term'); $the_term = get_term_by('slug', $term_slug, $taxonomy); $term_id = $the_term->term_id; $term_idsp = $taxonomy."_".$term_id; //$cat_id = $category->cat_ID; //$term_idsp = 'category_'.$cat_id; if(get_field('prdcat_tokucho', $term_idsp)){ echo get_field('prdcat_tokucho', $term_idsp); }
以上、大変お手数ですが、どなたか教えていただけたら幸いです。よろしくお願いいたします。
回答1件
あなたの回答
tips
プレビュー