after-(taxonomy)-table
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
Usage
add_action( 'after-(taxonomy)-table', 'wp_kama_after_taxonomy_table_action' ); /** * Function for `after-(taxonomy)-table` action-hook. * * @param string $taxonomy The taxonomy name. * * @return void */ function wp_kama_after_taxonomy_table_action( $taxonomy ){ // action... }
- $taxonomy(string)
- The taxonomy name.
Changelog
Since 3.0.0 | Introduced. |
Where the hook is called
In file: /wp-admin/edit-tags.php
after-(taxonomy)-table
wp-admin/edit-tags.php 675
do_action( "after-{$taxonomy}-table", $taxonomy ); // phpcs:ignore WordPress.NamingConventions.ValidHookName.UseUnderscores