-
-
Save theeventscalendar/38b7a4db26fcadd81bb7 to your computer and use it in GitHub Desktop.
Adds Previous/Next Month links to Month View even when no future/past events exist
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| /** | |
| * Allows visitors to page forward/backwards in any direction within month view | |
| * an "infinite" number of times (ie, outwith the populated range of months). | |
| */ | |
| if ( class_exists( 'Tribe__Events__Main' ) ) { | |
| class ContinualMonthViewPagination { | |
| public function __construct() { | |
| add_filter( 'tribe_events_the_next_month_link', array( $this, 'next_month' ) ); | |
| add_filter( 'tribe_events_the_previous_month_link', array( $this, 'previous_month' ) ); | |
| } | |
| public function next_month() { | |
| $url = tribe_get_next_month_link(); | |
| $text = tribe_get_next_month_text(); | |
| $date = Tribe__Events__Main::instance()->nextMonth( tribe_get_month_view_date() ); | |
| return '<a data-month="' . $date . '" href="' . $url . '" rel="next">' . $text . ' <span>»</span></a>'; | |
| } | |
| public function previous_month() { | |
| $url = tribe_get_previous_month_link(); | |
| $text = tribe_get_previous_month_text(); | |
| $date = Tribe__Events__Main::instance()->previousMonth( tribe_get_month_view_date() ); | |
| return '<a data-month="' . $date . '" href="' . $url . '" rel="prev"><span>«</span> ' . $text . ' </a>'; | |
| } | |
| } | |
| new ContinualMonthViewPagination; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment