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

Top ↑

Parameters

$taxonomy

(string)The taxonomy name.


Top ↑

Source

File: wp-admin/edit-tags.php

View on Trac


Top ↑

Changelog

Changelog
VersionDescription
3.0.0Introduced.

The content displayed on this page has been created in part by processing WordPress source code files which are made available under the GPLv2 (or a later version) license by theĀ Free Software Foundation. In addition to this, the content includes user-written examples and information. All material is subject to review and curation by the WPPaste.com community.