WP_REST_Post_Search_Handler::protected_title_format()
Overwrites the default protected title format.
By default, WordPress will show password protected posts with a title of "Protected: %s". As the REST API communicates the protected status of a post in a machine readable format, we remove the "Protected: " prefix.
{} It's a method of the class: WP_REST_Post_Search_Handler{}
No Hooks.
Return
String
. Protected 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. |
Code of WP_REST_Post_Search_Handler::protected_title_format() WP REST Post Search Handler::protected title format WP 5.9.3
public function protected_title_format() { return '%s'; }