Fires after the taxonomy list table. The dynamic portion of the hook name, `$taxonomy`, refers to the taxonomy slug. Possible hook names include: - `after-category-table` - `after-post_tag-table`
$taxonomy
Sortie :
@param string $taxonomy The taxonomy name.
// Ajouter une fonction au hook action 'after-{$taxonomy}-table'
add_action('after-{$taxonomy}-table', 'ma_fonction_personnalisee', 10, 1);
function ma_fonction_personnalisee($taxonomy) {
// Votre code ici
error_log('Hook after-{$taxonomy}-table déclenché');
}
Chargement des actualités...