taxonomy_labels_{$taxonomy}

taxonomy_labels_{$taxonomy}

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

See hook in core

Displaying hooks found in version: wordpress-6.7.2

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

  • /wp-includes/taxonomy.php line 749
    745
    746
    747
    748
    749
    750
    751
    752
    753
    754
    755
         * @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;
    }