/** * Jordan Vip Cars - LocalBusiness (AutoRental) structured data. * Data source: the business's own Google Business Profile, verified 2026-08-22. * Safe to delete this whole block to remove the markup. */ if ( ! function_exists( 'jvc_local_business_schema' ) ) { function jvc_local_business_schema() { if ( ! is_front_page() && ! is_page( 'contacts' ) ) { return; } $schema = array( '@context' => 'https://schema.org', '@type' => 'AutoRental', '@id' => home_url( '/#localbusiness' ), 'name' => 'Jordan Vip Cars', 'url' => home_url( '/' ), 'telephone' => '+962798455050', 'email' => 'jordan.vip.car@gmail.com', 'address' => array( '@type' => 'PostalAddress', 'streetAddress' => 'Naim abdul hadi st', 'addressLocality' => 'Amman', 'addressCountry' => 'JO', ), 'geo' => array( '@type' => 'GeoCoordinates', 'latitude' => 31.9862002, 'longitude' => 35.8575348, ), 'hasMap' => 'https://maps.app.goo.gl/kukhytJWrseQL5K57', 'openingHoursSpecification' => array( array( '@type' => 'OpeningHoursSpecification', 'dayOfWeek' => array( 'Monday', 'Tuesday', 'Wednesday', 'Thursday', 'Friday', 'Saturday', 'Sunday' ), 'opens' => '00:00', 'closes' => '23:59', ), ), ); echo '' . "\n"; } add_action( 'wp_head', 'jvc_local_business_schema', 20 ); }