after-(taxonomy)-table хук-событиеWP 3.0.0

Fires after the taxonomy list table.

The dynamic portion of the hook name, $taxonomy, refers to the taxonomy slug.

Possible hook names include:

  • after-category-table
  • after-post_tag-table

Использование

add_action( 'after-(taxonomy)-table', 'wp_kama_after_taxonomy_table_action' );

/**
 * Function for `after-(taxonomy)-table` action-hook.
 * 
 * @param string $taxonomy The taxonomy name.
 *
 * @return void
 */
function wp_kama_after_taxonomy_table_action( $taxonomy ){

	// action...
}
$taxonomy(строка)
The taxonomy name.

Список изменений

С версии 3.0.0 Введена.

Где вызывается хук

В файле: /wp-admin/edit-tags.php
after-(taxonomy)-table
wp-admin/edit-tags.php 675
do_action( "after-{$taxonomy}-table", $taxonomy );  // phpcs:ignore WordPress.NamingConventions.ValidHookName.UseUnderscores

Где используется хук в WordPress

Использование не найдено.