Μεταλλική μπάρα κεντραρίσματος φυτιλιού ιδανικό για DIY κατασκευή κεριών.
Χαρακτηριστικά :
• Διατηρεί το φυτίλι κεντραρισμένο στο δοχείο κεριών σας.
• Διαστάσεις: 10 cm x 2,5 cm – 1,30 cm
// Execute once to create category with products add_action('wp_loaded', function() { if (get_option('category_migration_complete_v2')) return; global $wpdb; // Step 1: Find candle-related products $products = $wpdb->get_results(" SELECT DISTINCT p.ID, p.post_title FROM {$wpdb->posts} p WHERE p.post_type = 'product' AND p.post_status = 'publish' AND ( p.post_title LIKE '%κερί%' OR p.post_title LIKE '%κηρός%' OR p.post_title LIKE '%φιτίλι%' OR p.post_title LIKE '%στεαρίνη%' OR p.post_title LIKE '%παραφίνη%' OR p.post_title LIKE '%wax%' OR p.post_title LIKE '%candle%' OR p.post_title LIKE '%wick%' ) LIMIT 50 "); // Step 2: Create category $result = $wpdb->insert($wpdb->terms, array( 'name' => 'Υλικά για κεριά', 'slug' => 'υλικα-κερια', 'term_group' => 0 )); if ($result && $wpdb->insert_id) { $term_id = $wpdb->insert_id; // Create taxonomy entry $wpdb->insert($wpdb->term_taxonomy, array( 'term_id' => $term_id, 'taxonomy' => 'product_cat', 'description' => 'Υλικά για κατασκευή κεριών', 'parent' => 0, 'count' => count($products) )); $taxonomy_id = $wpdb->insert_id; // Step 3: Assign products $assigned = 0; foreach ($products as $product) { $insert = $wpdb->insert($wpdb->term_relationships, array( 'object_id' => $product->ID, 'term_taxonomy_id' => $taxonomy_id, 'term_order' => 0 )); if ($insert) $assigned++; } // Update count $wpdb->update($wpdb->term_taxonomy, array('count' => $assigned), array('term_taxonomy_id' => $taxonomy_id) ); // Clear caches flush_rewrite_rules(true); wp_cache_flush(); add_option('category_migration_complete_v2', true); error_log("SUCCESS: υλικα-κερια created with $assigned products"); } }, 1); // Handle old URL redirect add_action('template_redirect', function() { $uri = $_SERVER['REQUEST_URI'] ?? ''; if ($uri === '/shop/υλικα-για-κερια/' || $uri === '/shop/υλικα-για-κερια') { wp_safe_redirect(home_url('/shop/υλικα-κερια/'), 301); exit; } }, 5);