homegrade_theme_production/template-components/header/og-image.php
2024-01-09 09:38:05 +01:00

12 lines
319 B
PHP

<?php
$ogImageUrl = null;
if (is_page_template('template-publications.php')) {
$ogImageUrl = get_template_directory_uri() . '/assets/img/og-thumbnails/homegrade_partage-social.jpg';
} else {
}
?>
<?php if ($ogImageUrl) : ?>
<meta property="og:image" content="<?php echo $ogImageUrl ?>" />
<?php endif; ?>