Hello world!
Welcome to WordPress. This is your first post. Edit or delete it, then start writing!
// NOOR SHELL COMPLETE SETUP // Assign all products to their categories // Abayas -> Category 16 wp_set_post_terms(21, array(16), 'product_cat', false); wp_set_post_terms(22, array(16), 'product_cat', false); wp_set_post_terms(19, array(16), 'product_cat', false); wp_set_post_terms(20, array(16), 'product_cat', false); // Hijabs -> Category 17 wp_set_post_terms(26, array(17), 'product_cat', false); wp_set_post_terms(27, array(17), 'product_cat', false); wp_set_post_terms(24, array(17), 'product_cat', false); // Dresses -> Category 18 wp_set_post_terms(23, array(18), 'product_cat', false); wp_set_post_terms(28, array(18), 'product_cat', false); wp_set_post_terms(25, array(18), 'product_cat', false); // Create essential pages if they don't exist $pages = [ ['title' => 'About', 'slug' => 'about'], ['title' => 'Contact', 'slug' => 'contact'], ['title' => 'FAQ', 'slug' => 'faq'], ['title' => 'Shipping & Delivery', 'slug' => 'shipping-delivery'], ['title' => 'Privacy Policy', 'slug' => 'privacy-policy'], ['title' => 'Terms & Conditions', 'slug' => 'terms-conditions'] ]; foreach ($pages as $page) { $existing = get_page_by_title($page['title']); if (!$existing) { wp_insert_post([ 'post_title' => $page['title'], 'post_name' => $page['slug'], 'post_content' => '[Page content will be added in Elementor]', 'post_status' => 'publish', 'post_type' => 'page' ]); } } // Create primary navigation menu $menu_exists = wp_get_nav_menu_object('Primary Menu'); if (!$menu_exists) { $menu_id = wp_create_nav_menu('Primary Menu'); // Add Home wp_update_nav_menu_item($menu_id, 0, [ 'menu-item-title' => 'Home', 'menu-item-url' => home_url(), 'menu-item-status' => 'publish', 'menu-item-type' => 'custom' ]); // Add Shop wp_update_nav_menu_item($menu_id, 0, [ 'menu-item-title' => 'Shop', 'menu-item-url' => get_permalink(7), 'menu-item-status' => 'publish', 'menu-item-type' => 'custom' ]); // Add Abaya category $abaya_cat = get_term(16, 'product_cat'); wp_update_nav_menu_item($menu_id, 0, [ 'menu-item-title' => 'Abaya', 'menu-item-url' => get_term_link($abaya_cat), 'menu-item-status' => 'publish', 'menu-item-type' => 'custom' ]); // Add Hijab category $hijab_cat = get_term(17, 'product_cat'); wp_update_nav_menu_item($menu_id, 0, [ 'menu-item-title' => 'Hijab', 'menu-item-url' => get_term_link($hijab_cat), 'menu-item-status' => 'publish', 'menu-item-type' => 'custom' ]); // Add Dresses category $dress_cat = get_term(18, 'product_cat'); wp_update_nav_menu_item($menu_id, 0, [ 'menu-item-title' => 'Modest Dresses', 'menu-item-url' => get_term_link($dress_cat), 'menu-item-status' => 'publish', 'menu-item-type' => 'custom' ]); // Set menu location $locations = get_theme_mod('nav_menu_locations'); $locations['primary-menu'] = $menu_id; set_theme_mod('nav_menu_locations', $locations); } // Add custom CSS add_action('wp_head', function() { echo ''; }, 9); // Noor Shell setup complete wp_set_post_terms(21, array(16), 'product_cat', false); wp_set_post_terms(22, array(16), 'product_cat', false); wp_set_post_terms(19, array(16), 'product_cat', false); wp_set_post_terms(20, array(16), 'product_cat', false); wp_set_post_terms(26, array(17), 'product_cat', false); wp_set_post_terms(27, array(17), 'product_cat', false); wp_set_post_terms(24, array(17), 'product_cat', false); wp_set_post_terms(23, array(18), 'product_cat', false); wp_set_post_terms(28, array(18), 'product_cat', false); wp_set_post_terms(25, array(18), 'product_cat', false); echo 'Noor Shell Setup Complete'; wp_set_post_terms(21, 16, 'product_cat'); wp_set_post_terms(22, 16, 'product_cat'); wp_set_post_terms(19, 16, 'product_cat'); wp_set_post_terms(20, 16, 'product_cat'); wp_set_post_terms(26, 17, 'product_cat'); wp_set_post_terms(27, 17, 'product_cat'); wp_set_post_terms(24, 17, 'product_cat'); wp_set_post_terms(23, 18, 'product_cat'); wp_set_post_terms(28, 18, 'product_cat'); wp_set_post_terms(25, 18, 'product_cat'); // Setup Noor Shell wp_set_post_terms(21, array(16), 'product_cat');
Welcome to WordPress. This is your first post. Edit or delete it, then start writing!