WC_Post_Types::gutenberg_can_edit_post_type()public staticWC 1.0

Disable Gutenberg for products.

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

Хуков нет.

Возвращает

true|false.

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

$result = WC_Post_Types::gutenberg_can_edit_post_type( $can_edit, $post_type );
$can_edit(true|false) (обязательный)
Whether the post type can be edited or not.
$post_type(строка) (обязательный)
The post type being checked.

Код WC_Post_Types::gutenberg_can_edit_post_type() WC 8.7.0

public static function gutenberg_can_edit_post_type( $can_edit, $post_type ) {
	return 'product' === $post_type ? false : $can_edit;
}