Fires the requested handler action. The dynamic portion of the hook name, `$action`, refers to the name of the requested action derived from the `GET` request.
N/A
Sortie :
// Ajouter une fonction au hook action 'network_admin_edit_{$action}'
add_action('network_admin_edit_{$action}', 'ma_fonction_personnalisee', 10, 1);
function ma_fonction_personnalisee() {
// Votre code ici
error_log('Hook network_admin_edit_{$action} déclenché');
}
Chargement des actualités...