REST API: Remove post status prefix from REST API responses.

When using the /posts or /pages endpoints, for private posts or pages, you get the following title property: { raw: "Some title", rendered: "Private: Some title" }
this commit removes the prefix from rendered private posts titles (just like what we do for protected posts)

Props youknowriad, swissspidy, timothyblynjacobs, sergeybiryukov, ramonopoly.
Fixes #61639.
Built from https://develop.svn.wordpress.org/trunk@58783


git-svn-id: http://core.svn.wordpress.org/trunk@58185 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
youknowriad 2024-07-23 07:51:12 +00:00
parent 2ecc281f69
commit 21fb080d5c
5 changed files with 19 additions and 11 deletions

View File

@ -327,10 +327,12 @@ class WP_REST_Global_Styles_Controller extends WP_REST_Posts_Controller {
} }
if ( rest_is_field_included( 'title.rendered', $fields ) ) { if ( rest_is_field_included( 'title.rendered', $fields ) ) {
add_filter( 'protected_title_format', array( $this, 'protected_title_format' ) ); add_filter( 'protected_title_format', array( $this, 'protected_title_format' ) );
add_filter( 'private_title_format', array( $this, 'protected_title_format' ) );
$data['title']['rendered'] = get_the_title( $post->ID ); $data['title']['rendered'] = get_the_title( $post->ID );
remove_filter( 'protected_title_format', array( $this, 'protected_title_format' ) ); remove_filter( 'protected_title_format', array( $this, 'protected_title_format' ) );
remove_filter( 'private_title_format', array( $this, 'protected_title_format' ) );
} }
if ( rest_is_field_included( 'settings', $fields ) ) { if ( rest_is_field_included( 'settings', $fields ) ) {

View File

@ -510,6 +510,7 @@ class WP_REST_Menu_Items_Controller extends WP_REST_Posts_Controller {
if ( rest_is_field_included( 'title.rendered', $fields ) ) { if ( rest_is_field_included( 'title.rendered', $fields ) ) {
add_filter( 'protected_title_format', array( $this, 'protected_title_format' ) ); add_filter( 'protected_title_format', array( $this, 'protected_title_format' ) );
add_filter( 'private_title_format', array( $this, 'protected_title_format' ) );
/** This filter is documented in wp-includes/post-template.php */ /** This filter is documented in wp-includes/post-template.php */
$title = apply_filters( 'the_title', $menu_item->title, $menu_item->ID ); $title = apply_filters( 'the_title', $menu_item->title, $menu_item->ID );
@ -517,6 +518,7 @@ class WP_REST_Menu_Items_Controller extends WP_REST_Posts_Controller {
$data['title']['rendered'] = $title; $data['title']['rendered'] = $title;
remove_filter( 'protected_title_format', array( $this, 'protected_title_format' ) ); remove_filter( 'protected_title_format', array( $this, 'protected_title_format' ) );
remove_filter( 'private_title_format', array( $this, 'protected_title_format' ) );
} }
if ( rest_is_field_included( 'status', $fields ) ) { if ( rest_is_field_included( 'status', $fields ) ) {

View File

@ -1844,10 +1844,12 @@ class WP_REST_Posts_Controller extends WP_REST_Controller {
} }
if ( rest_is_field_included( 'title.rendered', $fields ) ) { if ( rest_is_field_included( 'title.rendered', $fields ) ) {
add_filter( 'protected_title_format', array( $this, 'protected_title_format' ) ); add_filter( 'protected_title_format', array( $this, 'protected_title_format' ) );
add_filter( 'private_title_format', array( $this, 'protected_title_format' ) );
$data['title']['rendered'] = get_the_title( $post->ID ); $data['title']['rendered'] = get_the_title( $post->ID );
remove_filter( 'protected_title_format', array( $this, 'protected_title_format' ) ); remove_filter( 'protected_title_format', array( $this, 'protected_title_format' ) );
remove_filter( 'private_title_format', array( $this, 'protected_title_format' ) );
} }
$has_password_filter = false; $has_password_filter = false;
@ -2047,15 +2049,15 @@ class WP_REST_Posts_Controller extends WP_REST_Controller {
} }
/** /**
* Overwrites the default protected title format. * Overwrites the default protected and private title format.
* *
* By default, WordPress will show password protected posts with a title of * By default, WordPress will show password protected or private posts with a title of
* "Protected: %s", as the REST API communicates the protected status of a post * "Protected: %s" or "Private: %s", as the REST API communicates the status of a post
* in a machine-readable format, we remove the "Protected: " prefix. * in a machine-readable format, we remove the prefix.
* *
* @since 4.7.0 * @since 4.7.0
* *
* @return string Protected title format. * @return string Title format.
*/ */
public function protected_title_format() { public function protected_title_format() {
return '%s'; return '%s';

View File

@ -132,8 +132,10 @@ class WP_REST_Post_Search_Handler extends WP_REST_Search_Handler {
if ( in_array( WP_REST_Search_Controller::PROP_TITLE, $fields, true ) ) { if ( in_array( WP_REST_Search_Controller::PROP_TITLE, $fields, true ) ) {
if ( post_type_supports( $post->post_type, 'title' ) ) { if ( post_type_supports( $post->post_type, 'title' ) ) {
add_filter( 'protected_title_format', array( $this, 'protected_title_format' ) ); add_filter( 'protected_title_format', array( $this, 'protected_title_format' ) );
add_filter( 'private_title_format', array( $this, 'protected_title_format' ) );
$data[ WP_REST_Search_Controller::PROP_TITLE ] = get_the_title( $post->ID ); $data[ WP_REST_Search_Controller::PROP_TITLE ] = get_the_title( $post->ID );
remove_filter( 'protected_title_format', array( $this, 'protected_title_format' ) ); remove_filter( 'protected_title_format', array( $this, 'protected_title_format' ) );
remove_filter( 'private_title_format', array( $this, 'protected_title_format' ) );
} else { } else {
$data[ WP_REST_Search_Controller::PROP_TITLE ] = ''; $data[ WP_REST_Search_Controller::PROP_TITLE ] = '';
} }
@ -183,15 +185,15 @@ class WP_REST_Post_Search_Handler extends WP_REST_Search_Handler {
} }
/** /**
* Overwrites the default protected title format. * Overwrites the default protected and private title format.
* *
* By default, WordPress will show password protected posts with a title of * By default, WordPress will show password protected or private posts with a title of
* "Protected: %s". As the REST API communicates the protected status of a post * "Protected: %s" or "Private: %s", as the REST API communicates the status of a post
* in a machine-readable format, we remove the "Protected: " prefix. * in a machine-readable format, we remove the prefix.
* *
* @since 5.0.0 * @since 5.0.0
* *
* @return string Protected title format. * @return string Title format.
*/ */
public function protected_title_format() { public function protected_title_format() {
return '%s'; return '%s';

View File

@ -16,7 +16,7 @@
* *
* @global string $wp_version * @global string $wp_version
*/ */
$wp_version = '6.7-alpha-58782'; $wp_version = '6.7-alpha-58783';
/** /**
* 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.