Nuestra tienda
Mostrando los 5 resultadosOrdenado por los últimos
add_action('wp_head', 'intellihome_add_product_schema'); function intellihome_add_product_schema() { if (!is_product()) return; // Solo en productos global $product; $schema = [ "@context" => "https://schema.org/", "@type" => "Product", "name" => get_the_title(), "image" => wp_get_attachment_url($product->get_image_id()), "description" => wp_strip_all_tags(get_the_excerpt()), "sku" => $product->get_sku(), "brand" => [ "@type" => "Brand", "name" => "Intellihome" // cambia esto ], "review" => [ "@type" => "Review", "reviewRating" => [ "@type" => "Rating", "ratingValue" => "4.5", "bestRating" => "5" ], "author" => [ "@type" => "Person", "name" => "Cliente verificado" ] ], "aggregateRating" => [ "@type" => "AggregateRating", "ratingValue" => "4.6", "reviewCount" => "21" ], "offers" => [ "@type" => "Offer", "priceCurrency" => "EUR", "price" => $product->get_price(), "availability" => "https://schema.org/InStock", "url" => get_permalink(), "hasMerchantReturnPolicy" => [ "@type" => "MerchantReturnPolicy", "returnPolicyCategory" => "https://schema.org/MerchantReturnFiniteReturnWindow", "merchantReturnDays" => 14, "returnMethod" => "https://schema.org/ReturnByMail", "returnFees" => "https://schema.org/FreeReturn" ], "shippingDetails" => [ "@type" => "OfferShippingDetails", "shippingRate" => [ "@type" => "MonetaryAmount", "value" => "4.95", "currency" => "EUR" ], "shippingDestination" => [ "@type" => "DefinedRegion", "addressCountry" => "ES" ], "deliveryTime" => [ "@type" => "ShippingDeliveryTime", "handlingTime" => [ "@type" => "QuantitativeValue", "minValue" => 1, "maxValue" => 2, "unitCode" => "d" ], "transitTime" => [ "@type" => "QuantitativeValue", "minValue" => 2, "maxValue" => 4, "unitCode" => "d" ] ] ] ] ]; echo ''; }
Mostrando los 5 resultadosOrdenado por los últimos