Skip to content

Instantly share code, notes, and snippets.

View appsdevpk's full-sized avatar

Kashif appsdevpk

View GitHub Profile
@BKeanu1989
BKeanu1989 / add-wc-products-programmatically.php
Last active March 14, 2024 15:30
adding woocommerce productgs programmatically/ via code
function insert_product ($product_data)
{
$post = array( // Set up the basic post data to insert for our product
'post_author' => 1,
'post_content' => $product_data['description'],
'post_status' => 'publish',
'post_title' => $product_data['name'],
'post_parent' => '',