###前提・実現したいこと
WordpressのEvent Organiserというプラグインにて、2か月分のイベント一覧表示をさせたいです。
▼例
<2017年1月のイベント>
・イベント1
・イベント2
<2017年2月のイベント>
・イベント1
...
###発生している問題・エラーメッセージ
codexをもとに今月と来月のイベントを表示することはできたのですが、タイトル(例:2017年1月のイベント)を表示させる方法がわかりません。
どなたかご存じの方がいらっしゃいましたら、教えていただけないでしょうか。
よろしくお願いいたします。
プラグイン
【Event Organiser】
https://ja.wordpress.org/plugins/event-organiser/
【参考にしたページ】
http://docs.wp-event-organiser.com/querying-events/overview/
http://docs.wp-event-organiser.com/querying-events/date-formats/
Wordpress バージョン4.7.1
Event Organiser バージョン3.1.7
###該当のソースコード
▼今月のイベントのソース <?php $events = eo_get_events(array( 'event_start_before'=>'last day of this month', 'event_end_after'=>'first day of this month', 'showpastevents'=>'true' )); echo '<h2>'.event_title.'</h2>';//ここで2017年1月と表示させたいです。 if($events): echo '<ul>'; foreach ($events as $event): //Check if all day, set format accordingly $format = ( eo_is_all_day($event->ID) ? get_option('date_format') : get_option('date_format').' '.get_option('time_format') ); printf( '<li><a href="%s"> %s </a> on %s </li>', get_permalink($event->ID), get_the_title($event->ID), eo_get_the_start( $format, $event->ID, $event->occurrence_id ) ); endforeach; echo '</ul>'; endif; ?> ▼来月のイベントのソース <?php $events = eo_get_events(array( 'event_start_before'=>'last day of +1 month', 'event_end_after'=>'first day of +1 month', 'showpastevents'=>'true' )); echo '<h2>'.event_title.'</h2>';//ここで翌月の月を表示をさせたいです。 if($events): echo '<ul>'; foreach ($events as $event): //Check if all day, set format accordingly $format = ( eo_is_all_day($event->ID) ? get_option('date_format') : get_option('date_format').' '.get_option('time_format') ); printf( '<li><a href="%s"> %s </a> on %s </li>', get_permalink($event->ID), get_the_title($event->ID), eo_get_the_start( $format, $event->ID, $event->occurrence_id ) ); endforeach; echo '</ul>'; endif; ?>
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2017/01/20 05:53