manage_posts_extra_tablenav

ACTION wp-admin\includes\class-wp-posts-list-table.php (ligne 619) github
Fires immediately following the closing "actions" div in the tablenav for the posts list table.

Paramètres

Entrée :
$which
Sortie :
@param string $which The location of the extra table nav markup: 'top' or 'bottom'.

Utilisation

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

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

Actualités

Chargement des actualités...