wordpress_wc_create_product
Create new WooCommerce products by specifying product name and regular price to expand your WordPress store inventory.
Instructions
Create a new WooCommerce product
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| name | Yes | ||
| regular_price | Yes |
Input Schema (JSON Schema)
{
"properties": {
"name": {
"type": "string"
},
"regular_price": {
"type": "string"
}
},
"required": [
"name",
"regular_price"
],
"type": "object"
}