WP HOOKS
filtrdynamicznyod 4.4.0

taxonomy_labels_{$taxonomy}

Args 1Plik wp-includes/taxonomy.php

Opis — z kodu źródłowego

Filters the labels of a specific taxonomy.

The dynamic portion of the hook name, $taxonomy, refers to the taxonomy slug. Possible hook names include:

  • taxonomy_labels_category
  • taxonomy_labels_post_tag

Hook dynamiczny — możliwe nazwy

taxonomy_labels_categorytaxonomy_labels_post_tag

Parametry

ParametrTypOpis
$labelsobjectObject with labels for the taxonomy as member variables.

Wywołanie

Rejestracja callbackaphp
// rejestracja funkcji zwrotnej
add_filter( 'taxonomy_labels_{$taxonomy}', 'twoja_funkcja' );

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

Popularne w tej kategorii