after-category-table
Fires after the taxonomy list table.
This is one of the variants of the dynamic hook after-(taxonomy)-table
Usage
add_action( 'after-category-table', 'wp_kama_after_category_table_action' ); /** * Function for `after-category-table` action-hook. * * @param string $taxonomy The taxonomy name. * * @return void */ function wp_kama_after_category_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-category-table
wp-admin/edit-tags.php 675
do_action( "after-{$taxonomy}-table", $taxonomy ); // phpcs:ignore WordPress.NamingConventions.ValidHookName.UseUnderscores