-
Notifications
You must be signed in to change notification settings - Fork 16
mc_jumpbox_future_years
github-actions[bot] edited this page Jun 3, 2026
·
5 revisions
How many years into the future should be shown in the navigation jumpbox. Default '5'.
add_filter(
'mc_jumpbox_future_years',
function(
int $future,
string string
) {
// Your code here.
return $future;
},
10,
2
);-
int$futureNumber of years ahead. -
stringstring$cid Current calendar ID. '' when running in the shortcode generator. Other variable names:$cid,$value
int
apply_filters( 'mc_jumpbox_future_years', $future, $cid )apply_filters( 'mc_jumpbox_future_years', 5, '' )Replace the list footer for upcoming events lists. Default value </ul></div>.
add_filter(
'mc_upcoming_events_footer',
function( string $header ) {
// Your code here.
return $header;
}
);-
string$headerExisting upcoming events footer HTML.
string List header HTML.
apply_filters( 'mc_upcoming_events_footer', $footer )