19 lines
643 B
PHP
19 lines
643 B
PHP
<?php
|
|
/**
|
|
* Flatlogic WordPress helpers.
|
|
* Keeps platform preview metadata outside theme/plugin code.
|
|
*/
|
|
|
|
add_action('wp_head', function () {
|
|
if (is_front_page()) {
|
|
echo '<meta name="description" content="Search local listings, browse business categories, and submit a public directory listing for review.">' . "\n";
|
|
}
|
|
|
|
$image = $_SERVER['PROJECT_IMAGE_URL'] ?? getenv('PROJECT_IMAGE_URL') ?: '';
|
|
if ($image !== '') {
|
|
$image = esc_url($image);
|
|
echo '<meta property="og:image" content="' . $image . '">' . "\n";
|
|
echo '<meta name="twitter:image" content="' . $image . '">' . "\n";
|
|
}
|
|
}, 5);
|