Fires after the Save Draft (or Save as Pending) and Preview (or Preview Changes) buttons in the Publish meta box.
$post
Sortie :
@param WP_Post $post WP_Post object for the current post.
// Ajouter une fonction au hook action 'post_submitbox_minor_actions'
add_action('post_submitbox_minor_actions', 'ma_fonction_personnalisee', 10, 1);
function ma_fonction_personnalisee($post) {
// Votre code ici
error_log('Hook post_submitbox_minor_actions déclenché');
}
Chargement des actualités...