after-(taxonomy)-table action-hook . WP 3.0.0
Fires after the taxonomy list table.
The dynamic portion of the hook name, $taxonomy, refers to the taxonomy slug.
Usage
add_action( 'after-(taxonomy)-table', 'action_function_name_8808' ); function action_function_name_8808( $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 645
do_action( "after-{$taxonomy}-table", $taxonomy ); // phpcs:ignore WordPress.NamingConventions.ValidHookName.UseUnderscores