‚contact_url‘ => home_url(‚/contact/‘),
’shop_url‘ => home_url(‚/shop/‘), // falls dein Shop anders heißt: anpassen

// Social (optional – leere Strings = wird nicht angezeigt)
‚instagram‘ => ‚https://www.instagram.com/bioimkerei_rauscher/‘,
‚tiktok‘ => ‚https://www.tiktok.com/@bioimker‘,
‚youtube‘ => ‚https://www.youtube.com/@DieImker‘,
‚facebook‘ => ‚https://www.facebook.com/ImkereiRauscher‘,

// Text – bitte so lassen oder feinjustieren
‚tagline‘ => ‚Bio-Imkerei in Augsburg · Honig & Bienenwissen – regional, transparent, handgemacht.‘,
‚highlights‘ => [
‚Bio-zertifizierte Imkerei · Honigbox/Verkaufsschrank 24/7‘,
‚Facharbeiter:in Bienenwirtschaft (Landwirtschaftsschule Warth/Aichhof, NÖ) · Abschluss 11/2024 mit ausgezeichnetem Erfolg‘,
‚Imkerkurse für Stadtbienen gGmbh und die Volkshochschule Augsburg‘,
],

// Buttons
‚btn_primary‘ => ‚Steckbrief‘,
‚btn_contact‘ => ‚Kontakt‘,
‚btn_shop‘ => ‚Zum Shop‘,

// Anzeige
‚enable_auto_append‘ => true, // ✅ true = automatisch unter Blogposts, false = nur Shortcode
];
}

/** =========================
* 2) CSS (wird imausgegeben)* ========================= */add_action(‚wp_head‘, function () {static $done = false;if ($done) return;$done = true;

?>

‚,
‚tiktok‘ => “,
‚youtube‘ => “,
‚facebook‘ => “,
];

ob_start();
?>

Autor:in


BioImkerei Rauscher

 

return ob_get_clean();
}

/** Shortcode: [br_autorbox] */
add_shortcode(‚br_autorbox‘, function () {
return br_authorbox_render();
});

/** Optional: automatisch unter Blogposts */
add_filter(‚the_content‘, function ($content) {
$s = br_authorbox_settings();
if (empty($s[‚enable_auto_append‘])) return $content;

if (!is_singular(‚post‘)) return $content;
if (!in_the_loop() || !is_main_query()) return $content;

// Doppel-Ausgabe verhindern, falls Shortcode schon im Inhalt steht
if (has_shortcode($content, ‚br_autorbox‘)) return $content;

return $content . „\n\n“ . br_authorbox_render();
}, 20);