WP_REST_Post_Meta_Fields::__construct() WordPress Method

The WP_REST_Post_Meta_Fields::__construct() function sets up the fields used by the WP_REST_Post_Meta_Fields class.

WP_REST_Post_Meta_Fields::__construct( string $post_type ) #

Constructor.


Parameters

$post_type

(string)(Required)Post type to register fields for.


Top ↑

Source

File: wp-includes/rest-api/fields/class-wp-rest-post-meta-fields.php

	public function __construct( $post_type ) {
		$this->post_type = $post_type;
	}


Top ↑

Changelog

Changelog
VersionDescription
4.7.0Introduced.

The content displayed on this page has been created in part by processing WordPress source code files which are made available under the GPLv2 (or a later version) license by theĀ Free Software Foundation. In addition to this, the content includes user-written examples and information. All material is subject to review and curation by the WPPaste.com community.