WP HOOKS
akcjadynamicznyod 3.0.0

after-{$taxonomy}-table

Args 1Plik wp-admin/edit-tags.php

Opis — z kodu źródłowego

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

Hook dynamiczny — możliwe nazwy

after-category-tableafter-post_tag-table

Parametry

ParametrTypOpis
$taxonomystringThe taxonomy name.

Wywołanie

Rejestracja callbackaphp
// rejestracja funkcji zwrotnej
add_action( 'after-{$taxonomy}-table', 'twoja_funkcja' );

function twoja_funkcja($param_1) {
	// Twój kod
}

Popularne w tej kategorii