W3cubDocs

/WordPress

WP_REST_Post_Search_Handler::__construct()

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

Version Description
5.0.0 Introduced.

© 2003–2024 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/classes/wp_rest_post_search_handler/__construct