Open Goussaka opened 3 years ago
I have a custom post type "coupon" can I use wpapi to create a new coupon entry? i use this code await wp.types().type('coupon').get({}) i get the result below
================ DONE ==================== { description: '', hierarchical: false, name: 'Coupons', slug: 'coupon', taxonomies: [ 'coupon-category', 'coupon-store' ], rest_base: 'coupon',
.....
Try this: wp.coupon().create({title: 'My Coupon', status: 'publish'}).then(data => {/* do something with response */});
wp.coupon().create({title: 'My Coupon', status: 'publish'}).then(data => {/* do something with response */});
I have a custom post type "coupon" can I use wpapi to create a new coupon entry? i use this code await wp.types().type('coupon').get({}) i get the result below
================ DONE ==================== { description: '', hierarchical: false, name: 'Coupons', slug: 'coupon', taxonomies: [ 'coupon-category', 'coupon-store' ], rest_base: 'coupon',
.....