From da8ae2facd7ca1f67e3c5196678eac3bc5590524 Mon Sep 17 00:00:00 2001 From: Rachel Baker Date: Sun, 19 Feb 2017 04:32:41 +0000 Subject: [PATCH] REST API: Include the `status` property in `view` context responses from the Posts endpoints. Previously the status for a Post (or other post_types) was only exposed under the `edit` context, which doesn't really make much sense considering we support querying by post status without authentication. Originally introduced in v2.0 beta 1: https://github.com/WP-API/WP-API/commit/69f617d749e4f165b9e31c1c042eec45ade3e41f without any explanation in the commit message. Props dhanendran, jnylen0, rachelbaker. Fixes #39466. Built from https://develop.svn.wordpress.org/trunk@40080 git-svn-id: http://core.svn.wordpress.org/trunk@40017 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- .../rest-api/endpoints/class-wp-rest-posts-controller.php | 2 +- wp-includes/version.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php b/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php index 25e9c9a405..16765a5a5f 100644 --- a/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php +++ b/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php @@ -1767,7 +1767,7 @@ class WP_REST_Posts_Controller extends WP_REST_Controller { 'description' => __( 'A named status for the object.' ), 'type' => 'string', 'enum' => array_keys( get_post_stati( array( 'internal' => false ) ) ), - 'context' => array( 'edit' ), + 'context' => array( 'view', 'edit' ), ), 'type' => array( 'description' => __( 'Type of Post for the object.' ), diff --git a/wp-includes/version.php b/wp-includes/version.php index 2d1378ec79..8aa68d0579 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.8-alpha-40077'; +$wp_version = '4.8-alpha-40080'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.