mc_do_bulk_actions - joedolson/my-calendar GitHub Wiki

Execute custom bulk actions.

Auto-generated Example

add_action(
   'mc_do_bulk_actions',
    function(
        string $action,
        array $ids
    ) {
        // Your code here.
    },
    10,
    2
);

Parameters

  • string $action Declared action.
  • array $ids Array of event IDs being requested.

Files

do_action( 'mc_do_bulk_actions', $action, $ids )

← All Hooks