-
Notifications
You must be signed in to change notification settings - Fork 16
mc_todays_events_foot
Joe Dolson edited this page Jun 14, 2026
·
1 revision
Replace the list footer for today's events lists. Default value </ul>.
add_filter(
'mc_todays_events_footer',
function( string ) {
// Your code here.
return string;
}
);-
string$header Existing today's events header HTML. Other variable names:$footer
string List header HTML.
apply_filters( 'mc_todays_events_footer', $footer )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 )