WPのアーカイブを年別に分けたく、以下のコードにて実装しましたが、出力されるタグがバリデートエラーになってしまいます。。
参考にしたのはこちらのサイトです。
https://cosybench.com/customize-wp-archives-look/
php
1<!-- Monthly Archive --> 2<div class="sidebar-block sidebar-archive"> 3 <h2 class="sidebar-block-title">ARCHIVE<span class="text-ja">アーカイブ</span></h2> 4 5 <?php 6 $monthly_archives = wp_get_archives( 7 $args = array( 8 'type' => 'monthly', 9 'show_post_count' => false, 10 'before' => '', 11 'after' => ',', 12 'echo' => 0, 13 )); 14 $monthly_archives = explode(',', $monthly_archives); 15 array_pop($monthly_archives); 16 17 $yearly_archives = wp_get_archives( 18 $args = array( 19 'type' => 'yearly', 20 'format' => 'custom', 21 'before' => '', 22 'after' => ',', 23 'echo' => 0, 24 )); 25 $yearly_archives = explode(',', $yearly_archives); 26 array_pop($yearly_archives); 27 28 $this_year = (string)idate('Y'); 29 30 $out = '<ul class="archive-list">'; 31 32 foreach ($yearly_archives as $year) { 33 $the_year = substr($year,-8,4); 34 35 if ($the_year === $this_year): 36 $out .= '<li class="year">' . '<a class="year-number this-year active" href="#">' . $the_year . '</a>'; 37 $out .= '<ul class="children month-archive-list this-year-month">'; 38 else: 39 $out .= '<li class="year">' . '<a class="year-number" href="#">' . $the_year . '</a>'; 40 $out .= '<ul class="children month-archive-list">'; 41 endif; 42 43 foreach ($monthly_archives as $month) { 44 $pos = strpos($month, $the_year); 45 46 if ($pos !== false): 47 $out .= $month; 48 endif; 49 } 50 $out .= '</ul>'; 51 } 52 $out .= '</ul>'; 53 54 echo $out; 55 ?> 56</div> 57<!-- /Monthly Archive --> 58
出力されるコードは以下です。
html
1<!-- Monthly Archive --> 2<div class="sidebar-block sidebar-archive"> 3 <h2 class="sidebar-block-title">ARCHIVE<span class="text-ja">アーカイブ</span></h2> 4 5 <ul class="archive-list"> 6 <li class="year"><a class="year-number this-year active" href="#">2021</a> 7 <ul class="children month-archive-list this-year-month"> 8 <li><a href='http://tes.local/2021/02/'>2021年2月</a></li> 9 <li><a href='http://tes.local/2021/01/'>2021年1月</a> 10 </ul> 11 <li class="year"><a class="year-number" href="#">2020</a> 12 <ul class="children month-archive-list"> 13 </li> 14 <li><a href='http://tes.local/2020/12/'>2020年12月</a> 15 </ul> 16 </ul> 17</div> 18<!-- /Monthly Archive -->
ブラウザ表示でのエラーなどは無く、ずっと気付かなかったのですが、よくよく見てみると、archive-list 直下2つ目の li > children month-archive-list が閉じておらず、バリデートエラーになっていることに気づきました。
li の閉じタグが無いせいかと思い、$out .= '</ul>'; の箇所に追加したりしてみましたが上手くいきませんでした。。
あなたの回答
tips
プレビュー