Auto add products to offers

function auto_assign_remove_offers_category() { // Define the “Offers” category slug $offers_category_slug = ‘offers’; // Get the “Offers” category object $offers_category = get_term_by(‘slug’, $offers_category_slug, ‘product_cat’); // If the “Offers” category does not exist, create it if (!$offers_category) { wp_insert_term( ‘Offers’, // Category…Continue reading