add_filter('squirrly_seo_jsonld', function($data) { if (is_product()) { $data['offers']['shippingDetails'] = array( '@type' => 'OfferShippingDetails', 'shippingRate' => array( '@type' => 'MonetaryAmount', 'value' => '0.00', 'currency' => 'USD' ), 'shippingDestination' => array( '@type' => 'DefinedRegion', 'addressCountry' => 'US' ), 'deliveryTime' => array( '@type' => 'ShippingDeliveryTime', 'handlingTime' => array( '@type' => 'QuantitativeValue', 'minValue' => 1, 'maxValue' => 2, 'unitCode' => 'DAY' ), 'transitTime' => array( '@type' => 'QuantitativeValue', 'minValue' => 3, 'maxValue' => 5, 'unitCode' => 'DAY' ) ) ); } return $data; });
Skip to content