add_action('wp_head',function (){if (!is_product()) return;global $product;if (!$product) return;$schema=array("@context"=> "https://schema.org/","@type"=> "Product","name"=> $product->get_name(),"image"=> wp_get_attachment_url(//omantrends.com/wp-content/themes/bw-zenny/$product->get_image_id()),"description"=> wp_strip_all_tags($product->get_short_description()),"sku"=> $product->get_sku(),"brand"=> array("@type"=> "Brand","name"=> "Oman Trends"),"offers"=> array("@type"=> "Offer","url"=> get_permalink($product->get_id()),"priceCurrency"=> get_woocommerce_currency(),"price"=> $product->get_price(),"availability"=> $product->is_in_stock() ? "https://schema.org/InStock":"https://schema.org/OutOfStock","itemCondition"=> "https://schema.org/NewCondition"));echo '<script type="application/ld+json">' . wp_json_encode($schema,JSON_UNESCAPED_SLASHES | JSON_UNESCAPED_UNICODE) . '</script>'});