Docs: Correct `$post` parameter description for `display_post_states` filter.
Props grapplerulrich. Fixes #34541. Built from https://develop.svn.wordpress.org/trunk@35484 git-svn-id: http://core.svn.wordpress.org/trunk@35448 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
8fed77574c
commit
d49160ba5b
|
@ -1686,8 +1686,8 @@ function _post_states($post) {
|
||||||
*
|
*
|
||||||
* @since 2.8.0
|
* @since 2.8.0
|
||||||
*
|
*
|
||||||
* @param array $post_states An array of post display states.
|
* @param array $post_states An array of post display states.
|
||||||
* @param int $post The post ID.
|
* @param WP_Post $post The current post object.
|
||||||
*/
|
*/
|
||||||
$post_states = apply_filters( 'display_post_states', $post_states, $post );
|
$post_states = apply_filters( 'display_post_states', $post_states, $post );
|
||||||
|
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
*
|
*
|
||||||
* @global string $wp_version
|
* @global string $wp_version
|
||||||
*/
|
*/
|
||||||
$wp_version = '4.4-beta2-35483';
|
$wp_version = '4.4-beta2-35484';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||||
|
|
Loading…
Reference in New Issue