Eindrücke vom Freitag, 05.07.2024
// === SEO + Social + Structured Data Grundpaket (korrigiert) ===
// Nur EINMAL aktiv! Nicht parallel mit SEO-Plugins, die OG/Twitter ausgeben.
add_action('wp_head', function () {
if (is_admin()) return;
// --- Grunddaten ---
$site_name = get_bloginfo('name');
$title = wp_get_document_title();
$front_desc = 'Fotostudio Ebneter: Werbe-, Architektur-, Produkt-, Portrait- & Passfotos in Zürich. Professionell, präzise, für Marken und Menschen.';
$desc = is_front_page()
? $front_desc
: wp_strip_all_tags( get_the_excerpt() ?: get_bloginfo('description') );
// --- URL der aktuellen Seite ---
$url = is_singular() ? get_permalink() : home_url('/');
// --- OG-Bild: Beitragsbild bevorzugen, sonst Default ---
$img_url = '';
$img_w = 1200; // Fallback-Werte
$img_h = 630;
if (is_singular() && has_post_thumbnail()) {
$full = wp_get_attachment_image_src(get_post_thumbnail_id(), 'full');
if (!empty($full[0])) {
$img_url = $full[0];
if (!empty($full[1])) $img_w = (int) $full[1];
if (!empty($full[2])) $img_h = (int) $full[2];
}
}
// Fallback: absolut oder root-relativ verwenden (EINE Variante wählen)
if (!$img_url) {
// Variante A (absolut):
$img_url = 'https://werner-ebneter.ch/wp-content/uploads/2025/11/OG-Bild.png';
// Variante B (root-relativ):
// $img_url = home_url('/wp-content/uploads/2025/11/OG-Bild.png');
$img_w = 1200;
$img_h = 630;
}
// --- Ausgabe ---
echo "\n\n";
echo ''."\n";
echo ''."\n";
$og_type = is_singular() ? 'article' : 'website';
?>
\n";
}, 5);