-
Notifications
You must be signed in to change notification settings - Fork 16
mc_user_fields
github-actions[bot] edited this page May 15, 2026
·
5 revisions
Add custom fields to the My Calendar section of the user profile.
add_filter(
'mc_user_fields',
function(
{string} $output,
{int} $user_edit
) {
// Your code here.
return $output;
},
10,
2
);-
{string}$outputHTML for fields. -
{int}$user_editUser ID being edited.
{string}
apply_filters( 'mc_user_fields', '', $user_edit )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 )