after-post_tag-table action-hookWP 3.0.0

Fires after the taxonomy list table.

This is one of the variants of the dynamic hook after-(taxonomy)-table

Usage

add_action( 'after-post_tag-table', 'wp_kama_after_post_tag_table_action' );

/**
 * Function for `after-post_tag-table` action-hook.
 * 
 * @param string $taxonomy The taxonomy name.
 *
 * @return void
 */
function wp_kama_after_post_tag_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-post_tag-table
wp-admin/edit-tags.php 675
do_action( "after-{$taxonomy}-table", $taxonomy );  // phpcs:ignore WordPress.NamingConventions.ValidHookName.UseUnderscores

Where the hook is used in WordPress

Usage not found.