wppaste
WordPress

apply_filters( 'post_class_taxonomies', string[] $taxonomies, int $post_id, string[] $classes, string[] $css_class )

Since
6.1.0
Filters the taxonomies to generate classes for each individual term.

Description

Default is all public taxonomies registered to the post type.

Compatibility

WordPress
since 6.1.0
  • 6.7.7
  • 6.8.8
  • 6.9.7
  • 7.0.4
  • 7.1.0

Present in every tracked release (6.7.7 to 7.1.0).

Parameters

$taxonomiesstring[]
List of all taxonomy names to generate classes for.
$post_idint
The post ID.
$classesstring[]
An array of post class names.
$css_classstring[]
An array of additional class names added to the post.

Where this hook fires · 1

  • wp-includes/post-template.php:572get_post_class()

Source code

	 *	 * @param string[] $taxonomies List of all taxonomy names to generate classes for.	 * @param int      $post_id    The post ID.	 * @param string[] $classes    An array of post class names.	 * @param string[] $css_class  An array of additional class names added to the post.	*/	$taxonomies = apply_filters( 'post_class_taxonomies', $taxonomies, $post->ID, $classes, $css_class ); 	foreach ( (array) $taxonomies as $taxonomy ) {		if ( is_object_in_taxonomy( $post->post_type, $taxonomy ) ) {			foreach ( (array) get_the_terms( $post->ID, $taxonomy ) as $term ) {				if ( empty( $term->slug ) ) {					continue;

Changelog

Introduced in 6.1.0. Unchanged from 6.7.7 through 7.1.0.

  1. 6.7.7
  2. 6.8.8
  3. 6.9.7
  4. 7.0.4
  5. 7.1.0

Signature, return type and hooks compared across 5 parsed releases.

About this page

Parsed data
Generated from the wordpress-develop 7.1.0 tag, and regenerated for each WordPress release so it tracks the code rather than a snapshot of it.
Corrections
Something wrong on this page? Report it and it gets fixed in the next regeneration.