Skip to content
This repository was archived by the owner on Sep 24, 2018. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion lib/endpoints/class-wp-rest-comments-controller.php
Original file line number Diff line number Diff line change
Expand Up @@ -837,7 +837,7 @@ public function get_item_schema() {
'context' => array( 'edit' ),
),
'rendered' => array(
'description' => __( 'Content for the object, transformed for display.' ),
'description' => __( 'HTML content for the object, transformed for display.' ),
'type' => 'string',
'context' => array( 'view', 'edit', 'embed' ),
),
Expand Down
6 changes: 3 additions & 3 deletions lib/endpoints/class-wp-rest-posts-controller.php
Original file line number Diff line number Diff line change
Expand Up @@ -1437,7 +1437,7 @@ public function get_item_schema() {
'context' => array( 'edit' ),
),
'rendered' => array(
'description' => __( 'Title for the object, transformed for display.' ),
'description' => __( 'HTML title for the object, transformed for display.' ),
'type' => 'string',
'context' => array( 'view', 'edit', 'embed' ),
),
Expand All @@ -1457,7 +1457,7 @@ public function get_item_schema() {
'context' => array( 'edit' ),
),
'rendered' => array(
'description' => __( 'Content for the object, transformed for display.' ),
'description' => __( 'HTML content for the object, transformed for display.' ),
'type' => 'string',
'context' => array( 'view', 'edit' ),
),
Expand Down Expand Up @@ -1485,7 +1485,7 @@ public function get_item_schema() {
'context' => array( 'edit' ),
),
'rendered' => array(
'description' => __( 'Excerpt for the object, transformed for display.' ),
'description' => __( 'HTML excerpt for the object, transformed for display.' ),
'type' => 'string',
'context' => array( 'view', 'edit', 'embed' ),
),
Expand Down
4 changes: 2 additions & 2 deletions lib/endpoints/class-wp-rest-terms-controller.php
Original file line number Diff line number Diff line change
Expand Up @@ -543,7 +543,7 @@ public function get_item_schema() {
'readonly' => true,
),
'description' => array(
'description' => __( 'A human-readable description of the resource.' ),
'description' => __( 'HTML description of the resource.' ),
'type' => 'string',
'context' => array( 'view' ),
'arg_options' => array(
Expand All @@ -558,7 +558,7 @@ public function get_item_schema() {
'readonly' => true,
),
'name' => array(
'description' => __( 'The title for the resource.' ),
'description' => __( 'HTML title for the resource.' ),
'type' => 'string',
'context' => array( 'view', 'embed' ),
'arg_options' => array(
Expand Down