taxonomy_labels_post_tag хук-фильтрWP 4.4.0

Filters the labels of a specific taxonomy.

Это один из вариантов динамического хука taxonomy_labels_(taxonomy)

Использование

add_filter( 'taxonomy_labels_post_tag', 'wp_kama_taxonomy_labels_post_tag_filter' );

/**
 * Function for `taxonomy_labels_post_tag` filter-hook.
 * 
 * @param object $labels Object with labels for the taxonomy as member variables.
 *
 * @return object
 */
function wp_kama_taxonomy_labels_post_tag_filter( $labels ){

	// filter...
	return $labels;
}
$labels(объект)
Object with labels for the taxonomy as member variables.

Список изменений

С версии 4.4.0 Введена.

Где вызывается хук

get_taxonomy_labels()
taxonomy_labels_post_tag
wp-includes/taxonomy.php 742
$labels = apply_filters( "taxonomy_labels_{$taxonomy}", $labels );

Где используется хук в WordPress

Использование не найдено.