WC_Post_types::rest_api_allowed_post_types PHP Method

rest_api_allowed_post_types() public static method

Added product for Jetpack related posts.
public static rest_api_allowed_post_types ( array $post_types ) : array
$post_types array
return array
    public static function rest_api_allowed_post_types($post_types)
    {
        $post_types[] = 'product';
        return $post_types;
    }