-
Notifications
You must be signed in to change notification settings - Fork 16
mc_event_details
github-actions[bot] edited this page Jun 3, 2026
·
4 revisions
Render custom fields in the admin.
add_filter(
'mc_event_details',
function(
string $output,
bool $has_data,
object $data,
string $context
) {
// Your code here.
return $output;
},
10,
4
);-
string$outputHTML output. Default empty string. -
bool$has_dataIf event has data. -
object$dataEvent object. -
string$contextAdmin context.
string
apply_filters( 'mc_event_details', '', $has_data, $data, 'admin' )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 )