apply_filters( 'post_class', string[] $classes , string[] $class , int $post_id )
Filters the list of CSS class names for the current post.
Description Description
Parameters Parameters
- $classes
-
(string[]) An array of post class names.
- $class
-
(string[]) An array of additional class names added to the post.
- $post_id
-
(int) The post ID.
Source Source
Changelog Changelog
Version | Description |
---|---|
2.7.0 | Introduced. |
User Contributed Notes User Contributed Notes
You must log in before being able to contribute a note or feedback.
Custom classes for post table rows.
This filter can be used to add additional classes to the rows of post in any
edit.php
post page of the dashboard,Expand full source codeCollapse full source code
The filter is called when ever the function
get_post_class($class, $post_id)
is called. It is called at the end of the of function.Internally WordPress will call this function in many places, including the admin dashboard pages. The filter allows you to filter the Array
$classes
which will be added to the page.Furthermore, the classes passed to the function call by say a plugin or a template will be passed as the 2nd parameter
$class
, and finally the third parameter is the ID of the post object being processed by the function.