Automattic\WooCommerce\Admin\API
OnboardingProducts::create_products
Deprecated since 11.1.0 Sample product creation for the Customize Your Store flow has been removed.. It is no longer supported and may be removed in future releases. It is recommended to replace this function with the same one.
Create products.
Method of the class: OnboardingProducts{}
No Hooks.
Returns
WP_REST_Response.
Usage
$OnboardingProducts = new OnboardingProducts(); $OnboardingProducts->create_products( $request );
- $request(WP_REST_Request) (required)
- Full details about the request.
Changelog
| Deprecated since 11.1.0 | Sample product creation for the Customize Your Store flow has been removed. |
OnboardingProducts::create_products() OnboardingProducts::create products code WC 11.1.1
public function create_products( $request ) {
wc_deprecated_function( __METHOD__, '11.1.0' );
return rest_ensure_response( array( 'success' => false ) );
}