オリジナルテーマでカスタム投稿タイプを作成しています。
カスタム投稿一覧を表示させたいのですが、
投稿ページで入力したタグが一覧ページに表示されません。
Gutenbergが無効の状態でしたら表示されました。
原因がわかる方いらっしゃいますか?
また、タグに入力がない場合や、内容で写真を入れたりすると構成が崩れます。
何か不足している指定などあるでしょうか?
▼作成したfunctions.phpコード
php
1//カスタム投稿タイプ 2function my_post_type() { 3 register_post_type( 4 'case', 5 array( 6 'labels' => [ 7 'name' => 'ケース紹介', 8 'add_new' => 'ケースを追加', 9 'add_new_item' => 'ケースを追加', 10 'menu_name' => 'ケース紹介', 11 'edit_item' => 'ケースを編集' 12 ], 13 'public' => true, 14 'has_archive' => true, 15 'hierarchical' => false, 16 'menu_position' => 5, 17 'menu_icon' => 'dashicons-testimonial', 18 'show_in_rest' => true 19)); 20 21 register_taxonomy('case_tag', 'case', [ 22 'labels' => [ 23 'name' => 'ケースタグ ', 24 ], 25 'hierarchical' => false, 26 'show_in_rest' => true 27 ]); 28 29 30} 31 32add_action('init', 'my_post_type' ); 33
▼作成したarchive-case.php
php
1<?php get_header(); ?> 2 3<main role="main"> 4<article> 5 <h2 class="center">ケース</h2> 6</article> 7 8<article> 9 10<?php if(have_posts()): 11while(have_posts()): the_post(); ?> 12 13<section> 14 15<div> 16<h3><?php the_title(); ?></h3> 17 18<!--タグの表示--> 19<?php 20 $terms = get_the_terms(get_the_ID(), 'case_tag'); 21 foreach ($terms as $term): 22?> 23<p class="bgc-y"><?php echo htmlspecialchars($term->name); ?></p> 24</div> 25<?php endforeach; ?> 26 27 28<div <?php post_class(); ?>> 29 <p>【日付 <?php the_field ('日付'); ?>】</p> 30 <p><?php the_content(); ?></p> 31</div> 32 33</section> 34<?php endwhile; endif;?> 35 36</article> 37 38</main> 39 40<?php get_footer(); ?>
プラグインにAdvanced Custom Fieldsを使用しています。
あなたの回答
tips
プレビュー