前提・実現したいこと
Wordpressの date.phpを使用して月別イベントページを作成しています。
date.phpを作成し、月別の表示は出来ました。
躓いている箇所①
月別の一覧は作成できたのですが、一覧ページの表示順が、最新の日付が上から表示するようになっています。
月初〜月末の並び順にするには、どういったコードを追加すれば可能でしょうか。
該当のソースコード date.php
<main> <?php if(have_posts()): ?> <?php while(have_posts()):the_post(); ?> <!-- ループはじめ --> <section class="scheWrap mb20" > <?php if(has_post_thumbnail()): ?> <div class="liveImg"><?php the_post_thumbnail('thumbnail'); ?></div> <?php else: ?> <div class="liveImg"><img src="<?php echo get_template_directory_uri(); ?>/images/common/noimage_180x180.png" height="180" width="180" alt=""></div> <?php endif; ?> <div class="Info"> <p class="day" ><?php the_time( "Y年m月d日(D)" ); ?></p> <h2 class="event"><?php the_title(); ?></h2> <p class="artist"><?php $textfield = get_field('schedule_artist'); echo($textfield);?></p> <p class="info_detail">OPEN/START:<?php $textfield = get_field('schedule-time'); echo($textfield);?> ADV/DOOR:<?php $textfield = get_field('schedule_ticket'); echo($textfield);?></p> </div> </section> <!-- ループおわり --> <?php endwhile; ?> <?php endif; ?> </main>
躓いている箇所②
現在、URLが以下の通りに表示されています。
http://localhost/ドメイン名/2021/12/
http://localhost/ドメイン名/2022/01/
こちらを/schedule/を噛ませて表示させるには、どういった設定が必要でしょうか。
http://localhost/ドメイン名/schedule/2021/12/
http://localhost/ドメイン名/schedule/2022/01/
勉強不足で誠に申し訳ないのですが、手助けいただけると助かります。
よろしくお願い致します。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。