Fires at the beginning of the publishing actions section of the Publish meta box.
$post
Sortie :
@param WP_Post|null $post WP_Post object for the current post on Edit Post screen,
// Ajouter une fonction au hook action 'post_submitbox_start'
add_action('post_submitbox_start', 'ma_fonction_personnalisee', 10, 1);
function ma_fonction_personnalisee($post) {
// Votre code ici
error_log('Hook post_submitbox_start déclenché');
}
Chargement des actualités...