WP_REST_Post_Search_Handler::protected_title_format()publicWP 5.0.0

Overwrites the default protected and private title format.

By default, WordPress will show password protected or private posts with a title of "Protected: %s" or "Private: %s", as the REST API communicates the status of a post in a machine-readable format, we remove the prefix.

Method of the class: WP_REST_Post_Search_Handler{}

No Hooks.

Return

String. Title format.

Usage

$WP_REST_Post_Search_Handler = new WP_REST_Post_Search_Handler();
$WP_REST_Post_Search_Handler->protected_title_format();

Changelog

Since 5.0.0 Introduced.

WP_REST_Post_Search_Handler::protected_title_format() code WP 6.7.2

public function protected_title_format() {
	return '%s';
}