taxonomy_labels_{$taxonomy}

taxonomy_labels_{$taxonomy}

Appears in: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , ,
Hook Type: filter

See hook in core

Displaying hooks found in version: wordpress-6.5.2

apply_filters('taxonomy_labels_{$taxonomy}') is found 1 times:

  • /wp-includes/taxonomy.php line 742
    	 * @see get_taxonomy_labels() for the full list of taxonomy labels.
    	 *
    	 * @param object $labels Object with labels for the taxonomy as member variables.
    	 */
    	$labels = apply_filters( "taxonomy_labels_{$taxonomy}", $labels );
    
    	// Ensure that the filtered labels contain all required default values.
    	$labels = (object) array_merge( (array) $default_labels, (array) $labels );
    
    	return $labels;
    }