| 531 | |
| 532 | /** |
| 533 | * Filters the taxonomies to generate classes for each individual term. |
| 534 | * |
| 535 | * Default is all public taxonomies registered to the post type. |
| 536 | * |
| 537 | * @since 4.9.9 |
| 538 | * |
| 539 | * @param array $taxonomies List of all public taxonomies to generate classes for. |
| 540 | * @param array $classes An array of post class names. |
| 541 | * @param array $class An array of additional class names added to the post. |
| 542 | * @param int $post_id The post ID. |
| 543 | */ |
| 544 | $taxonomies = apply_filters( 'post_class_taxonomies', $taxonomies, $classes, $class, $post->ID ); |
| 545 | |