Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- $data = [
- 'name' => 'Premium Quality',
- 'type' => 'simple',
- 'regular_price' => '21.99',
- 'description' => 'Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo.',
- 'short_description' => 'Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas.',
- 'categories' => [
- [
- 'id' => 9
- ],
- [
- 'id' => 14
- ]
- ],
- 'images' => [
- [
- 'src' => 'http://demo.woothemes.com/woocommerce/wp-content/uploads/sites/56/2013/06/T_2_front.jpg',
- 'position' => 0
- ],
- [
- 'src' => 'http://demo.woothemes.com/woocommerce/wp-content/uploads/sites/56/2013/06/T_2_back.jpg',
- 'position' => 1
- ]
- ],
- 'downloadable' => true,
- 'downloads' => [
- [
- id => md5('path to file'), //http://php.net/manual/en/function.md5-file.php
- name => 'filename.pdf',
- file => '/uploads/pdfs/file.pdf'
- ]
- ]
- ];
- print_r($woocommerce->post('products', $data));
- ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement