-
Notifications
You must be signed in to change notification settings - Fork 16
mc_before_save_update
github-actions[bot] edited this page May 15, 2026
·
4 revisions
Filter updated event data prior to saving.
add_filter(
'mc_before_save_update',
function(
{array} $update,
{int} $event_id
) {
// Your code here.
return $update;
},
10,
2
);-
{array}$updateUpdated event data. -
{int}$event_idEvent ID.
{array}
apply_filters( 'mc_before_save_update', $update, $event_id )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 )