akcjadynamicznyod 6.0.0
registered_taxonomy_{$taxonomy}
Args 3Plik wp-includes/taxonomy.php
Opis — z kodu źródłowego
Fires after a specific taxonomy is registered.
The dynamic portion of the filter name, $taxonomy, refers to the taxonomy key.
Possible hook names include:
registered_taxonomy_categoryregistered_taxonomy_post_tag
Hook dynamiczny — możliwe nazwy
registered_taxonomy_categoryregistered_taxonomy_post_tagParametry
| Parametr | Typ | Opis |
|---|---|---|
$taxonomy | string | Taxonomy slug. |
$object_type | array | string | Object type or array of object types. |
$args | array | Array of taxonomy registration arguments. |
Wywołanie
Rejestracja callbackaphp
// rejestracja funkcji zwrotnej — podaj liczbę argumentów!
add_action( 'registered_taxonomy_{$taxonomy}', 'twoja_funkcja', 10, 3 );
function twoja_funkcja($param_1, $param_2, $param_3) {
// Twój kod
}
// rejestracja funkcji zwrotnej — podaj liczbę argumentów!
add_action( 'registered_taxonomy_{$taxonomy}', 'twoja_funkcja', 10, 3 );
function twoja_funkcja($param_1, $param_2, $param_3) {
// Twój kod
}Popularne w tej kategorii