myblogs_allblogs_options

ACTION wp-admin\my-sites.php (ligne 107) github
Fires before the sites list on the My Sites screen.

Paramètres

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

Utilisation

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

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

Actualités

Chargement des actualités...