after_menu_locations_table

ACTION wp-admin\nav-menus.php (ligne 939) github
Fires after the menu locations table is displayed.

Paramètres

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

Utilisation

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

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

Actualités

Chargement des actualités...