after-<taxonomy>-table
Fires after the taxonomy list table.
Description
The dynamic portion(s) of the hook name refer to the taxonomy slug.
Parameters (1)
- 0. $taxonomy (string)
- The taxonomy name.
Usage
- To run the hook, copy the example below.
- // run the action
- do_action( 'after-{$taxonomy}-table', $taxonomy );
- The following example is for adding a hook callback.
- // define the after-<taxonomy>-table callback
- function action_after_taxonomy_table( $taxonomy ) {
- // make action magic happen here...
- };
- // add the action
- add_action( "after-{$taxonomy}-table", 'action_after_taxonomy_table', 10, 1 );
- To remove a hook callback, use the example below.
- // remove the action
- remove_action( "after-{$taxonomy}-table", 'action_after_taxonomy_table', 10, 1 );
Defined (1)
The action is defined in the following location(s).
- /wp-admin/edit-tags.php
- do_action( "after-{$taxonomy}-table", $taxonomy );