WP_REST_Post_Search_Handler::__construct()

In this article

Constructor.

Source

public function __construct() {
	$this->type = 'post';

	// Support all public post types except attachments.
	$this->subtypes = array_diff(
		array_values(
			get_post_types(
				array(
					'public'       => true,
					'show_in_rest' => true,
				),
				'names'
			)
		),
		array( 'attachment' )
	);
}

Changelog

VersionDescription
5.0.0Introduced.

User Contributed Notes

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