-
Notifications
You must be signed in to change notification settings - Fork 16
mc_date_utc_format
github-actions[bot] edited this page Jun 3, 2026
·
4 revisions
End date format used in 'date_end_utc'. Default from My Calendar settings.
add_filter(
'mc_date_utc_format',
function(
string $format,
string string
) {
// Your code here.
return $format;
},
10,
2
);-
string$formatDate Format in PHP date format. -
stringstring$context 'template_end_ts'. Other variable names:string $context 'template_begin_ts'.,$template_begin_ts,$template_end_ts
string Date format.
apply_filters( 'mc_date_utc_format', $date_format, 'template_begin_ts' )apply_filters( 'mc_date_utc_format', $date_format, 'template_end_ts' )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 )