pahvalentines/opengraph.php
2026-02-03 00:47:10 +05:30

27 lines
No EOL
1.4 KiB
PHP

<?php
$protocol = (!empty($_SERVER['HTTPS']) && $_SERVER['HTTPS'] !== 'off') ? 'https' : 'http';
$base_url = $protocol . '://' . $_SERVER['HTTP_HOST'];
?>
<!-- twitter card -->
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:site" content="@PetsatHome" />
<meta name="twitter:creator" content="@PetsatHome" />
<meta name="twitter:title" content="Love song for your Pets" />
<meta name="twitter:description" content="Create a personalized love song for your pet with our fun and easy tool." />
<meta name="twitter:image" content="<?php echo $base_url; ?>/assets/images/thumbnail.jpg" />
<!-- OG base data -->
<meta property="og:url" content="<?php echo $base_url; ?>/" />
<meta property="og:title" content="Love song for your Pets" />
<meta property="og:description" content="Create a personalized love song for your pet with our fun and easy tool." />
<meta property="og:site_name" content="Pets at Home | Valentine's Jukebox" />
<meta property="og:locale" content="en_GB" />
<!-- OG image data (MUST be absolute URLs) -->
<meta property="og:image" content="<?php echo $base_url; ?>/assets/images/thumbnail.jpg" />
<meta property="og:image:alt" content="Pet's At Home Valentine's Jukebox" />
<meta property="og:image:width" content="1200" />
<meta property="og:image:height" content="630" />
<!-- extra metadata — unknown support -->
<meta property="og:type" content="website" />