if (!function_exists(‘f5_seo_head_output’)) {
function f5_seo_head_output() {
$url = ‘https://’ . $_SERVER[‘HTTP_HOST’] . strtok($_SERVER[‘REQUEST_URI’], ‘?’);
// Hreflang tags signalling this content is relevant to NRI target markets
$regions = array(‘en-in’, ‘en-gb’, ‘en-us’, ‘en-ae’, ‘en-au’);
foreach ($regions as $region) {
echo ‘‘ . “\n”;
}
echo ‘‘ . “\n”;
// LocalBusiness schema – homepage only, to avoid duplicate schema across pages
if (is_front_page()) {
$schema = array(
‘@context’ => ‘https://schema.org’,
‘@type’ => ‘ProfessionalService’,
‘name’ => ‘F5 Weddings’,
‘description’ => ‘F5 Weddings is a leading luxury destination wedding planning and decor company based in Mumbai, India, with 12+ years of experience crafting bespoke weddings for clients across India, the United Kingdom, the United States, the United Arab Emirates, and Australia.’,
‘url’ => ‘https://f5weddings.com’,
‘telephone’ => ‘+91 99678 37722’,
‘address’ => array(
‘@type’ => ‘PostalAddress’,
‘streetAddress’ => ’30/113, Shree Laxmi Vijay Industrial Premises, Laxmi Industrial Estate, New Link Road’,
‘addressLocality’ => ‘Mumbai’,
‘addressRegion’ => ‘Maharashtra’,
‘postalCode’ => ‘400053’,
‘addressCountry’ => ‘IN’,
),
‘areaServed’ => array(‘India’, ‘United Kingdom’, ‘United States’, ‘United Arab Emirates’, ‘Australia’),
);
echo ‘‘ . “\n”;
}
}
add_action(‘wp_head’, ‘f5_seo_head_output’);
}














