Loading view. if ( class_exists( ‘Tribe__Events__Main’ ) ) { class ContinualMonthViewPagination { function __construct() { add_filter( ‘tribe_events_the_next_month_link’, array( $this, ‘next_month’ ), 0 ); add_filter( ‘tribe_events_the_previous_month_link’, array( $this, ‘previous_month’ ), 0 ); } 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 ‘‘ . $text . ‘ ยป‘; } […]