after-category-table
Fires after the taxonomy list table.
Это один из вариантов динамического хука after-(taxonomy)-table
Использование
add_action( 'after-category-table', 'wp_kama_after_category_table_action' ); /** * Function for `after-category-table` action-hook. * * @param string $taxonomy The taxonomy name. * * @return void */ function wp_kama_after_category_table_action( $taxonomy ){ // action... }
- $taxonomy(строка)
- The taxonomy name.
Список изменений
С версии 3.0.0 | Введена. |
Где вызывается хук
В файле: /wp-admin/edit-tags.php
after-category-table
wp-admin/edit-tags.php 676
do_action( "after-{$taxonomy}-table", $taxonomy ); // phpcs:ignore WordPress.NamingConventions.ValidHookName.UseUnderscores