##実装したいこと
一覧として表示しているものの特定の一部をグレイアウトするために、タームを用いてクラス名前を付与したい
closedの記事が表示されている欄では、** <div class="home-event-card-thum">の部分に、追加でevent-closed**というクラス名を付与したいです
php
1<?php 2 $custom_posts = get_posts(array( 3 'post_type' => 'event', // 投稿タイプ 4 'posts_per_page' => 8, // 表示件数 5 'meta_query' => array( 6 'relation' => 'AND', 7 'event_month' => array( 8 'key' => 'event_month', 9 ), 10 'event_day' => array( 11 'key' => 'event_day', 12 'type' => 'DATE', 13 ), 14 ), 15 'orderby' => array( 16 'event_month' => 'ASC', 17 'event_day' => 'ASC', 18 ), // 表示順の基準 19 'tax_query' => array( 20 array( 21 'taxonomy' => 'event-tag', //タクソノミーを指定 22 'field' => 'slug', //ターム名をスラッグで指定す 23 'terms' => array ( 'accepting', 'closed' ), //表示したいタームをスラッグで指定 24 'operator' => 'IN' 25 ), 26 ) 27 )); 28 global $post; 29 if($custom_posts): foreach($custom_posts as $post): setup_postdata($post); ?> 30 <div> 31 <div> 32 <a href="<?php the_permalink(); ?>"> 33 <div class="home-event-card-thum"> 34 <?php the_post_thumbnail('thumb169_min');?> 35 </div> 36 </a> 37 </div> 38 </div>
##試したこと
Wordmress私的マニュアルのget_the_termsの記事を読み、
php
1<div class="home-event-card-thum <?php $slug = get_the_terms(); ?>">
と実装しましたがダメでした、、、
##最後に
teratail初心者で、質問方法に至らぬ部分もあるかと思いますがよろしくお願い致します。
##補足
php
1$term_lists = wp_get_post_terms($post->ID, 'event-tag', array("fields" => "slug")); 2 global $post; 3 if($custom_posts): foreach($custom_posts as $post): setup_postdata($post); ?> 4 <div class="swiper-slide"> 5 <div class="home-event-card"> 6 <a href="<?php the_permalink(); ?>"> 7 <?php 8 if( is_array($term_lists) && array_search('closed', $term_lists) ){ 9 echo ('<div class="home-event-card-thum event-closed">'); 10 } else { 11 echo ('<div class="home-event-card-thum"> '); 12 } ?> 13 <?php the_post_thumbnail('thumb169_min');?> 14 </div>
上記のように実装致しましたが、出力を確認すると該当のクラスにはevent-closedが付与されておらず、全てelseで処理されておりました。
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
退会済みユーザー
2021/10/03 14:11
2021/10/03 14:16
退会済みユーザー
2021/10/03 14:29
退会済みユーザー
2021/10/03 15:12