diff --git a/wp-includes/post-functions.php b/wp-includes/post-functions.php index d1cdc6927e..d514cea48f 100644 --- a/wp-includes/post-functions.php +++ b/wp-includes/post-functions.php @@ -574,11 +574,12 @@ function get_post_status( $ID = '' ) { } /** - * Filters the post status. + * Filter the post status. * * @since 4.4.0 * - * @param string $post->post_status The status of the post. + * @param string $post_status The post status. + * @param WP_Post $post The post object. */ return apply_filters( 'get_post_status', $post->post_status, $post ); } diff --git a/wp-includes/version.php b/wp-includes/version.php index 42649fbf43..018cc2a152 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.4-alpha-35239'; +$wp_version = '4.4-alpha-35240'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.