post_comment_status_meta_box-options

ACTION wp-admin\includes\meta-boxes.php (ligne 869) github
Fires at the end of the Discussion meta box on the post editing screen.

Paramètres

Entrée :
$post
Sortie :
@param WP_Post $post WP_Post object for the current post.

Utilisation

// Ajouter une fonction au hook action 'post_comment_status_meta_box-options'
add_action('post_comment_status_meta_box-options', 'ma_fonction_personnalisee', 10, 1);

function ma_fonction_personnalisee($post) {
    // Votre code ici
    error_log('Hook post_comment_status_meta_box-options déclenché');
}

Actualités

Chargement des actualités...