###実現したいこと
カスタム投稿で紐づけられたタグの一覧をfromt-page.phpで表示させたい。
###問題点
タグを取得した結果、Falseとなりました。 $posttags = get_the_tags(); var_dump($posttags);
###コード
<div class="service_container"> <div class="service_area"> <div class="service_contents totolog_h2"> <h2>How about service</h2> <?php $args = [ 'post_type' => 'service', 'posts_per_page' => 6, ]; $my_query = new WP_Query($args); ?> <?php if ($my_query->have_posts()) : ?> <ul> <?php while ($my_query->have_posts()) : $my_query->the_post(); ?> <li> <div class="content_inner"> <div class="image_area"> <img src="wp-content/themes/xeory_extension-child/lib/images/lp.svg" alt=""> </div> <div class="title_block padding_block"> <h3 class="title"><?php the_title(); ?></h3> </div> <div class="content_block padding_block"> <p class="comment"><?php the_content(); ?></p> </div> <div class="tag_block padding_block"> <?php $posttags = get_the_tags(); var_dump($posttags); if ($posttags) { foreach ($posttags as $tag) { echo '<div class="tag_area"><span><i class="fas fa-tag tag" aria-hidden="true"></i></span>' . $tag->name . '</div>'; } } ?> </li> </ul> <?php else : ?> <p>まだサービスがありません。</p> <?php endif; wp_reset_postdata(); ?> </div> </div> </div>
あなたの回答
tips
プレビュー