以前、質問させていただいたのですが、
https://teratail.com/questions/306523
続きで躓きましたので質問させていただきます。
前提・実現したいこと
バンドのホームページを作っています。
過去のライブ一覧を月別で表示させたいと思っています。
ライブの日程はAdvanced Custom Fieldsにてフィールド名を「live_date」としてデイトピッカーで入力できるようにしています。
ちなみに「今後のライブ予定」はカスタム投稿タイプ「live」で
archive-live.php
にて作成。
「過去のライブ一覧」は固定ページで
page-pastlive.php
にて作成しています。
以下の記事を参考に作業を進めています。
https://oku-log.com/blog/ctm-archive/
発生している問題
■問題1
前回から進んで、セレクトボックスは表示されたのですが
「2021年20月」や「2021年82月」など、あり得ない値が表示されてしまいます。
■問題2
また、リンク先のURLが
「2020年10月」の場合、以下のようになりリンク先は404エラーとなります。
https://hoge.com/2020/10/?meta_key=live_date
正しくは「date/」が入り
https://hoge.com/date/2020/10/?meta_key=live_date
となるはずなのでは?
もしくは「live/」も入って
https://hoge.com/live/date/2020/10/?meta_key=live_date
となる?
などと思うのですが原因が分かりません。
該当のソースコード
該当ファイルには以下のように記述しています。
何かおかしなところはありますでしょうか?
参考記事ではふつうの投稿、私がしたいのはカスタム投稿タイプなので
多少、記述が変わってくるのかな?など考えたり。。
ご教授お願いいたします。
functions.phpには以下を追記
//カスタムフィールドの値で月別アーカイブ function my_get_month_archives( $args = '' ) { global $wpdb, $wp_locale; $defaults = array( 'date_field' => 'live_date', //カスタムフィールドのフィールド名を記述 'format' => 'html', 'echo' => true, 'limit' => '', 'before' => '', 'after' => '', 'show_post_count' => true, ); $r = wp_parse_args( $args, $defaults ); extract( $r, EXTR_SKIP ); if ( '' != $limit ) { $limit = absint( $limit ); $limit = ' LIMIT '.$limit; } $field = 'm.meta_value'; $select = "SELECT SUBSTRING($field,1,4) AS `year`, SUBSTRING($field,6,2) AS `month`, count(p.ID) AS posts"; $where = "WHERE p.post_type = 'live' AND p.post_status = 'publish'"; $where .= $wpdb->prepare( ' AND m.meta_key = %s', $date_field ); $join = " INNER JOIN $wpdb->postmeta AS m ON m.post_id = p.ID"; $where = apply_filters( 'getarchives_where', $where, $r ); $join = apply_filters( 'getarchives_join' , $join , $r ); $output = ''; $query = "$select FROM $wpdb->posts AS p $join $where GROUP BY SUBSTRING($field,1,4), SUBSTRING($field,6,2) ORDER BY $field DESC $limit"; $key = md5( $query ); $cache = wp_cache_get( 'my_get_month_archives' , 'general' ); if ( !isset( $cache[ $key ] ) ) { $arcresults = $wpdb->get_results( $query ); $cache[ $key ] = $arcresults; wp_cache_set( 'my_get_month_archives', $cache, 'general' ); } else { $arcresults = $cache[ $key ]; } if ( $arcresults ) { $afterafter = $after; foreach ( (array) $arcresults as $arcresult ) { $url = add_query_arg( array( 'meta_key' => $date_field ), get_month_link( $arcresult->year, $arcresult->month) ); $text = sprintf( '%d', $arcresult->year ).'年'.sprintf( '%d', $arcresult->month ).'月'; $output .= '<option value="'.$url.'">'.$text.'</option>'; } } if ( $echo ) echo $output; else return $output; }
page-pastlive.phpには以下を追記
<select name="archive-dropdown" onChange='document.location.href=this.options[this.selectedIndex].value;'> <option value="">年代から絞り込む</option> <?php my_get_month_archives( array( 'date_field' => 'live_date', //カスタムフィールドのフィールド名を記述 ) ); ?> </select>
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2021/03/13 03:34
退会済みユーザー
2021/03/13 04:25 編集
2021/03/13 05:17