wp_nav_menu_item_custom_fields_customize_template

ACTION wp-includes\customize\class-wp-customize-nav-menu-item-control.php (ligne 162) github
Fires at the end of the form field template for nav menu items in the customizer. Additional fields can be rendered here and managed in JavaScript.

Paramètres

Entrée :
N/A
Sortie :
N/A

Utilisation

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

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

Actualités

Chargement des actualités...