Automattic\WooCommerce\Admin\Features\Navigation

Screen::register_post_type()public staticWC 1.0

Register post type for use in WooCommerce Navigation screens.

Метод класса: Screen{}

Хуков нет.

Возвращает

null. Ничего (null).

Использование

$result = Screen::register_post_type( $post_type );
$post_type(строка) (обязательный)
Post type to add.

Код Screen::register_post_type() WC 8.7.0

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