edit_page_form

ACTION wp-admin\edit-form-advanced.php (ligne 731) github
Fires after 'normal' context meta boxes have been output for the 'page' post type.

Paramètres

Entrée :
$post
Sortie :
@param WP_Post $post Post object.

Utilisation

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

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

Actualités

Chargement des actualités...