前提・実現したいこと
現在、当日のスケジュールを表示させることは出来ているのですが、キャッシュが残っているのか何度リロードしても更新されません。(何故か9時以降にリロードすると更新されます)
発生している問題・エラーメッセージ
該当のソースコード
<?php $args = array( 'post_type' => 'schedule', 'meta_key' => 'scheduling_day', 'orderby' => 'meta_value', 'order'=> 'ASC', 'posts_per_page' => -1, ); $the_query = new WP_Query($args); if ( $the_query->have_posts() ) : while ( $the_query->have_posts() ) : $the_query->the_post(); $today = new DateTime(); $schedule = scf::get('scheduling'); foreach($schedule as $fields){ if($today->format('Y-m-d') == $fields['scheduling_day']){ echo' '.$fields['you'].' '.$fields['time'].' '.$fields['place'].' '; }break; }?> <?php endwhile; else: get_template_part( 'content', 'none' ); endif;?>
試したこと
ajaxで取得すればいけるかと思ったのですがダメでした。
日付変更と同時にイベントが発火するようにすれば良いのでしょうか?
補足情報(FW/ツールのバージョンなど)
キャッシュ系のプラグインは使用していません
回答1件
あなたの回答
tips
プレビュー