
この直前に、AIOSEO用の処理を追加します。

// 画像アップロードの際圧縮を使わない
add_filter('jpeg_quality', function($arg){return 100;});

// AIOSEOのパンくずリストで「家」と出力されるホーム表記を「HOME」に変更
add_filter( 'aioseo_schema_output', 'custom_aioseo_schema_home_label' );
function custom_aioseo_schema_home_label( $graphs ) {
  foreach ( $graphs as $graph_key => $graph ) {
    if (
      isset( $graph['@type'] ) &&
      $graph['@type'] === 'BreadcrumbList' &&
      isset( $graph['itemListElement'] ) &&
      is_array( $graph['itemListElement'] )
    ) {
      foreach ( $graph['itemListElement'] as $item_key => $item ) {
        if (
          isset( $item['position'], $item['name'] ) &&
          (int) $item['position'] === 1 &&
          $item['name'] === '家'
        ) {
          $graphs[$graph_key]['itemListElement'][$item_key]['name'] = 'HOME';
        }
      }
    }
  }

  return $graphs;
}

?><?xml version="1.0" encoding="UTF-8"?><?xml-stylesheet type="text/xsl" href="//fujioka-dc.jp/wp-content/plugins/wordpress-seo/css/main-sitemap.xsl"?>
<sitemapindex xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
	<sitemap>
		<loc>https://fujioka-dc.jp/post-sitemap.xml</loc>
		<lastmod>2026-02-14T03:01:45+00:00</lastmod>
	</sitemap>
	<sitemap>
		<loc>https://fujioka-dc.jp/page-sitemap.xml</loc>
		<lastmod>2026-06-04T11:52:57+00:00</lastmod>
	</sitemap>
	<sitemap>
		<loc>https://fujioka-dc.jp/column-sitemap.xml</loc>
		<lastmod>2022-11-17T01:31:43+00:00</lastmod>
	</sitemap>
	<sitemap>
		<loc>https://fujioka-dc.jp/category-sitemap.xml</loc>
		<lastmod>2026-02-14T03:01:45+00:00</lastmod>
	</sitemap>
	<sitemap>
		<loc>https://fujioka-dc.jp/column_category-sitemap.xml</loc>
		<lastmod>2022-11-17T01:31:43+00:00</lastmod>
	</sitemap>
</sitemapindex>
<!-- XML Sitemap generated by Yoast SEO -->