mc_save_settings - joedolson/my-calendar GitHub Wiki
Run when settings are saved. Default ''. First argument is a remnant from when this was a filter.
Auto-generated Example
add_action(
'mc_save_settings',
function(
string $message,
array $post
) {
// Your code here.
},
10,
2
);
Parameters
string$messageMessage after updating settings sent tomc_show_notice().array$postSanitized POST global.
Files
do_action( 'mc_save_settings', '', $post )