-
Notifications
You must be signed in to change notification settings - Fork 16
mc_show_months
github-actions[bot] edited this page Jun 3, 2026
·
4 revisions
Filter how many months to show in list views.
add_filter(
'mc_show_months',
function(
int $show_months,
array $args
) {
// Your code here.
return $show_months;
},
10,
2
);-
int$show_monthsNumber of months to show at once. -
array$argsCurrent view arguments.
int
apply_filters( 'mc_show_months', mc_get_option( 'show_months' ), $args )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 )