Showing 1–16 of 45 results
add_action('wp_head', 'alzain_product_schema'); function alzain_product_schema() { if (!is_product()) return; global $product; $schema = [ '@context' => 'https://schema.org', '@type' => 'Product', 'name' => get_the_title(), 'description' => wp_strip_all_tags($product->get_description() ?: $product->get_short_description()), 'url' => get_permalink(), 'image' => wp_get_attachment_url($product->get_image_id()), 'brand' => ['@type' => 'Brand', 'name' => 'Al Zain Trading'], 'sku' => $product->get_sku(), 'offers' => [ '@type' => 'Offer', 'priceCurrency' => 'AED', 'price' => $product->get_price(), 'availability' => $product->is_in_stock() ? 'https://schema.org/InStock' : 'https://schema.org/OutOfStock', 'url' => get_permalink(), 'seller' => ['@type' => 'Organization', 'name' => 'Al Zain Trading'] ] ]; echo ''; }