Skip to content

mc_save_user

Joe Dolson edited this page May 15, 2026 · 5 revisions

Execute action when saving My Calendar data in a user profile.

Auto-generated Example

add_action(
   'mc_save_user',
    function(
        {object} $int,
        {array} $_POST
    ) {
        // Your code here.
    },
    10,
    2
);

Parameters

  • {object} $int Edited user ID.
  • {array} $_POST POST data.

Files

do_action( 'mc_save_user', $edit_id, $_POST )

← All Hooks

Clone this wiki locally