WP HOOKS
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_category
  • registered_taxonomy_post_tag

Hook dynamiczny — możliwe nazwy

registered_taxonomy_categoryregistered_taxonomy_post_tag

Parametry

ParametrTypOpis
$taxonomystringTaxonomy slug.
$object_typearray | stringObject type or array of object types.
$argsarrayArray 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
}

Popularne w tej kategorii