WP_Post_Type::__construct( string $post_type, array|string $args = array() )

Constructor.


Description

Will populate object properties from the provided arguments and assign other default properties based on that information.

See also


Parameters

$post_type

(string) (Required) Post type key.

$args

(array|string) (Optional) Array or string of arguments for registering a post type.

Default value: array()


Source

File: wp-includes/class-wp-post-type.php

	public function __construct( $post_type, $args = array() ) {
		$this->name = $post_type;

		$this->set_props( $args );
	}


Changelog

Changelog
Version Description
WP-4.6.0 Introduced.