実現したいこと
「news」というカスタム投稿タイプの年ごとのアーカイブページを作りたいです。
「2023年」「2022年」のように投稿がある年を取得し表示。
「2023年」をクリックで「2023年」に投稿された記事だけを取得表示
上記の要件を実装したいです。
以下のように書いて、
「2023年」「2022年」のように投稿がある年を取得し表示。 OK
「2023年」をクリックで localhost/2023/?post_type=news のようにURLはとれています。
しかし、「2023年」の記事以外も表示されてしまいます。
PHP
1 <ul class=""> 2<!---投稿がある年を取得--!> 3 <?php 4 wp_get_archives(array( 5 'type' => 'yearly', 6 'before' => '<li class="">', //デフォルトはnull.<li><a>~</a></li>以外の形で<a>タグをくくりたいときに、設定する 7 'show_post_count' => false, //アーカイブ件数を表示するかしないか. 表示させたい場合はtrueに. 8 'echo' => '1', //関数で取得した値を出力するかしないか.したくないときは、'0'またはfalse指定. 9 'order' => 'DESC', 10 'post_type' => 'news', 11 )); 12 13 echo '</ul>'; 14 $url = $_SERVER['REQUEST_URI']; 15 $yearpath = parse_url($url)['path']; 16 $year = trim($yearpath,'/'); 17 echo '<h2>'.$year.'年</h2>'; 18 ?> 19 <ul class=""> 20<!--投稿タイプnewsの記事を一覧表示--!> 21 <?php 22 $args = array( 23 'post_type' => 'news', 24 'order' => 'DESC', 25 'tax_query' => array( 26 array( 27 'taxonomy' => 'news_cat', // カスタムタクソノミー 28 'terms' => 'important_information', //取得から除外するターム名 29 'operator' => 'NOT IN', //指定のタームを取得しない 30 'field' => 'slug' 31 ), 32 ), 33 ); 34 35 $the_query = new WP_Query($args); 36 if ($the_query->have_posts()) : 37 ?> 38 <?php while ($the_query->have_posts()) : $the_query->the_post(); ?> 39 <?php 40 $terms = get_the_terms($post->ID, 'news_cat'); 41 ?> 42 <!-- posts_per_page: -1 --> 43 <li class="> 44 <div class=""> 45 <div class="> 46 47 <?php 48 foreach ($terms as $term) { 49 $class = "label-category"; 50 echo '<p class="' . "label-category" . " " . "-" . $term->slug . '">' . $term->name . '</p>'; 51 } 52 ?> 53 54 </div> 55 <div class=""> 56 <p class=""><?= get_the_time('Y.m.d', $id); ?></p> 57 </div> 58 <div class=""> 59 <p class="text"><a href=<?php the_permalink(); ?>><?= get_the_title(); ?></a></p> 60 </div> 61 </div> 62 </li> 63 <?php 64 endwhile; 65 ?> 66 <?php 67 else : 68 ?> 69 <div class=""> 70 <p>投稿が存在しません。</p> 71 </div> 72 <?php 73 endif; 74 wp_reset_postdata(); 75 ?> 76 </ul>
どうすれば、「2023年」「2022年」のように投稿がある年を取得し表示。「2023年」をクリックで「2023年」に投稿された記事だけを取得表示 するようにできるでしょうか?
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。