after-{$taxonomy}-table WordPress Action Hook
After-{$taxonomy}-table is a hook that is called after a {$taxonomy} taxonomy table is displayed. This hook can be used to add custom content to the end of the taxonomy table.
do_action( "after-{$taxonomy}-table", string $taxonomy ) #
Fires after the taxonomy list table.
Description
The dynamic portion of the hook name, $taxonomy
, refers to the taxonomy slug.
Possible hook names include:
after-category-table
after-post_tag-table
Parameters
- $taxonomy
(string)The taxonomy name.
Source
File: wp-admin/edit-tags.php
Changelog
Version | Description |
---|---|
3.0.0 | Introduced. |