apply_filters( 'display_post_states', string[] $post_states , WP_Post $post )
Filters the default post display states used in the posts list table.
Parameters
-
$post_states
string[] -
An array of post display states.
-
$post
WP_Post -
The current post object.
Source
File: wp-admin/includes/template.php
.
View all references
return apply_filters( 'display_post_states', $post_states, $post );
Changelog
Version | Description |
---|---|
5.5.0 | Also applied in the Customizer context. If any admin functions are used within the filter, their existence should be checked with function_exists() before being used. |
3.6.0 | Added the $post parameter. |
2.8.0 | Introduced. |
User Contributed Notes
You must log in before being able to contribute a note or feedback.
This always shows the current post status in the labels. This is especially useful when adding many custom post states.
Second parameter ($post) is type WP_Post, not int.
Top ↑
Feedback
Hi, nice find! Would you like to open a core trac ticket and submit a patch to fix this discrepancy? — By Drew Jaynes —