WP_REST_Post_Search_Handler::protected_title_format(): string

In this article

Overwrites the default protected title format.

Description

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.

Return

string Protected title format.

Source

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

Changelog

VersionDescription
5.0.0Introduced.

User Contributed Notes

You must log in before being able to contribute a note or feedback.