Automattic\WooCommerce\Admin\Features\Navigation

Screen::register_post_type()public staticWC 1.0

Register post type for use in WooCommerce Navigation screens.

Method of the class: Screen{}

No Hooks.

Return

null. Nothing (null).

Usage

$result = Screen::register_post_type( $post_type );
$post_type(string) (required)
Post type to add.

Screen::register_post_type() code WC 8.6.1

public static function register_post_type( $post_type ) {
	if ( ! in_array( $post_type, self::$post_types, true ) ) {
		self::$post_types[] = $post_type;
	}
}