/**
 * Schema CreativeWorkSeries z AggregateRating
 * - Wyświetla się na wszystkich stronach POZA pojedynczymi wpisami blogowymi
 */
add_action( 'wp_head', 'me_aggregate_rating_schema_global' );
function me_aggregate_rating_schema_global() {
    // Nie wyświetlaj na pojedynczych wpisach blogowych
    if ( is_singular( 'post' ) ) {
        return;
    }
    
    // === DANE OPINII — edytuj tylko te 2 wartości ===
    $rating_value = '4.8';
    $rating_count = '44';
    // ===============================================
    
    // Dynamiczna nazwa w zależności od typu strony
    if ( is_front_page() ) {
        $name = 'Strona główna';
    } elseif ( is_product_category() || is_product_tag() ) {
        $name = single_cat_title( '', false );
    } elseif ( is_shop() ) {
        $name = 'Sklep';
    } elseif ( is_product() ) {
        $name = get_the_title();
    } elseif ( is_page() ) {
        $name = get_the_title();
    } elseif ( is_home() ) {
        $name = 'Blog';
    } elseif ( is_search() ) {
        return; // pomiń stronę wyników wyszukiwania
    } elseif ( is_404() ) {
        return; // pomiń stronę 404
    } else {
        $name = get_bloginfo( 'name' );
    }
    
    ?>
    <script type="application/ld+json">
    {
      "@context": "https://schema.org",
      "@type": "CreativeWorkSeries",
      "name": "",
      "aggregateRating": {
        "@type": "AggregateRating",
        "ratingValue": "",
        "bestRating": "5",
        "ratingCount": ""
      }
    }
    </script><?xml version="1.0" encoding="UTF-8"?><?xml-stylesheet type="text/xsl" href="//idg-online.pl/main-sitemap.xsl"?>
<sitemapindex xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
	<sitemap>
		<loc>https://idg-online.pl/post-sitemap.xml</loc>
		<lastmod>2026-02-28T17:07:30+00:00</lastmod>
	</sitemap>
	<sitemap>
		<loc>https://idg-online.pl/page-sitemap.xml</loc>
		<lastmod>2026-02-28T16:53:47+00:00</lastmod>
	</sitemap>
	<sitemap>
		<loc>https://idg-online.pl/product-sitemap.xml</loc>
		<lastmod>2026-01-28T00:19:55+00:00</lastmod>
	</sitemap>
	<sitemap>
		<loc>https://idg-online.pl/featured_item-sitemap.xml</loc>
		<lastmod>2025-09-23T23:40:18+00:00</lastmod>
	</sitemap>
	<sitemap>
		<loc>https://idg-online.pl/category-sitemap.xml</loc>
		<lastmod>2026-02-28T17:07:30+00:00</lastmod>
	</sitemap>
	<sitemap>
		<loc>https://idg-online.pl/local-sitemap.xml</loc>
		<lastmod>2023-07-06T08:50:33+00:00</lastmod>
	</sitemap>
</sitemapindex>
<!-- XML Sitemap generated by Rank Math SEO Plugin (c) Rank Math - rankmath.com -->