wordpressでWEBページを制作しています。
TOPページ「index.php」でカスタム投稿タイプで4件表示しているのですが、
つけてるタグで、書き出すhtmlを変更する条件分岐を行いたいのですが、どうも出来ません。。。
やり方をご教授いただければと思います。
以下私のほうで設定している内容です。
カスタム投稿名・・works
#####■function.php カスタム投稿の設定
php
1 2function create_post_type_works() { 3 $Supports = [ 4 'title', 5 'editor', 6 'custom-fields', 7 'thumbnail', 8 ]; 9 register_post_type( 'works', 10 array( 11 'label' => 'WORKS', 12 'labels' => array( 13 'all_items' => 'ワークス一覧' 14 ), 15 'public' => true, 16 'has_archive' => true, 17 'menu_position' => 5, 18 'supports' => $Supports 19 ) 20 ); 21 22 //カテゴリタイプの設定(カスタムタクソノミーの設定) 23 register_taxonomy( 24 'workscat', //カテゴリー名(任意) 25 'works', //カスタム投稿名 26 array( 27 'hierarchical' => true, //カテゴリータイプの指定 28 'update_count_callback' => '_update_post_term_count', 29 //ダッシュボードに表示させる名前 30 'label' => 'カテゴリー', 31 'public' => true, 32 'show_ui' => true 33 ) 34 ); 35 36 //タグタイプの設定(カスタムタクソノミーの設定) 37 register_taxonomy( 38 'workstag', //タグ名(任意) 39 'works', //カスタム投稿名 40 array( 41 'hierarchical' => false, //タグタイプの指定(階層をもたない) 42 'update_count_callback' => '_update_post_term_count', 43 //ダッシュボードに表示させる名前 44 'label' => 'タグ', 45 'public' => true, 46 'show_ui' => true 47 ) 48 ); 49} 50add_action( 'init', 'create_post_type_works' ); 51
#####■index.php ループの設定
PHP
1<ul class="event_list col4"> 2<?php $args = array( 3 'numberposts' => 4, 4 'post_type' => 'works' 5 6 ); 7 $customPosts = get_posts($args); 8 if($customPosts) : foreach($customPosts as $post) : setup_postdata( $post ); 9 ?> 10 11<li> 12<a href="<?php the_permalink(); ?>"> 13<div class="img"> 14 15<?php if(has_tag( 'now' )) : ?> 16<div class="state now"><p>開催中</p></div> 17 18<?php elseif(has_tag( 'fin' )) : ?> 19<div class="state fin"><p>開催終了</p></div> 20 21<?php elseif(has_tag( 'new' )) : ?> 22<div class="state new"><p>NEW</p></div> 23 24<?php endif; ?> 25 26<div class="thum"><?php the_post_thumbnail(); ?></div> 27<div class="opa"><img src="/images/trance_top.png"></div> 28</div> 29<div class="e_title"> 30<h3><?php the_title(); ?></h3> 31</div> 32</a> 33</li> 34 35<?php endforeach; ?> 36<?php endif; 37 wp_reset_postdata(); //クエリのリセット ?> 38 39</ul>
<?php if(has_tag( 'now' )) : ?> <div class="state now"><p>開催中</p></div> <?php elseif(has_tag( 'fin' )) : ?> <div class="state fin"><p>開催終了</p></div> <?php elseif(has_tag( 'new' )) : ?> <div class="state new"><p>NEW</p></div> <?php endif; ?>
の部分で、何のタグを持ってるかで、表示するhtmlを変更したいのですが、
どのように書けば良いのでしょうか?
宜しくお願い致します。
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/04/23 08:55
退会済みユーザー
2020/04/23 11:29
2020/04/24 01:33