/*
    Theme Name: PH Theme
    Description: Responsive Wedding Photography Portfolio WordPress Theme designed for wedding photographers and professionals in the same line of work.
    Author: WPHunters
    Author URI: https://wphunters.com/
    Theme URI: https://wphunters.com/themes
    Version: 1.0.5
    License: GNU General Public License version 1.0
    License URI: https://www.gnu.org/licenses/gpl-1.0.html
    Text Domain: ph-theme
    Domain Path: /languages
*/


/* THEME CHECK BYPASS. */
/* !!! CLASSES ARE IMPLEMENTED IN /public/styles/main.scss */

.aligncenter { }
.alignleft { }
.alignright { }
.bypostauthor { }
.gallery-caption { }
.sticky { }
.wp-caption-text { }
.wp-caption { }
.screen-reader-text { }

/* BELOW YOU CAN ADD YOUR OWN STYLES */




/**
 * KI-Bots direkt zur llms.txt leiten via HTTP Header
 */
function add_llms_header_link() {
    if (!is_admin()) { // Nur im Frontend ausführen
        header('Link: <https://fotoboxsalzburg.at/llms.txt>; rel="llms"');
    }
}
add_action('send_headers', 'add_llms_header_link');


/**
 * Erweitertes Local Business Schema für Fotobox Salzburg
 */
function add_custom_fotobox_schema() {
    ?>
    <script type="application/ld+json">
    {
      "@context": "https://schema.org",
      "@type": "LocalBusiness",
      "name": "die feschen Fotoboxen - Fotoboxverleih Salzburg",
      "url": "https://fotoboxsalzburg.at",
      "address": {
        "@type": "PostalAddress",
        "streetAddress": "Bachstrasse 11",
        "addressLocality": "Salzburg",
        "postalCode": "5023",
        "addressCountry": "AT"
      },
      "areaServed": ["Salzburg Stadt", "Flachgau", "Tennengau", "Pongau", "Pinzgau", "Lungau", "Salzkammergut", "Oberösterreich", "Oberbayern"],
      "priceRange": "€399 - €499",
      "telephone": "+43 660 3704757"
    }
    </script>
    <?php
}
add_action('wp_head', 'add_custom_fotobox_schema');