// ===== カスタムCSS:ヘッダー・デザイン・スマホ対応 =====
function pso_add_custom_css() {
echo '';
}
add_action("wp_head", "pso_add_custom_css", 99);
// ヘッダー右側エリアをJS経由で挿入
function pso_header_right_js() {
echo '';
}
add_action('wp_head', 'pso_header_right_js', 100);
// ===== OGP画像・description 上書き(Cocoon完全対応) =====
function pso_fix_all_ogp($html) {
$ogp_image = 'https://pet-sanso-care.com/wp-content/uploads/2026/04/9e92cea819bbe4a1d89fc94ff1a8d5e1b98516c6ca9f0cd05a78e22ba0056b0a.jpg';
$ogp_desc = 'ペット用酸素室・酸素濃縮器の専門情報サイト。レンタルvs購入の費用比較、デメリット・選び方を販売歴10年のスタッフが解説します。';
$screenshot = 'https://pet-sanso-care.com/wp-content/themes/cocoon-master/screenshot.jpg';
// 1. Cocoonのscreenshot.jpgを正しいOGP画像に置換
$html = str_replace($screenshot, $ogp_image, $html);
// 2. 空のog:descriptionを正しいdescriptionに置換
$html = preg_replace(
'//i',
'',
$html
);
$html = preg_replace(
'//i',
'',
$html
);
return $html;
}
function pso_ogp_start() { ob_start('pso_fix_all_ogp'); }
function pso_ogp_end() { if (ob_get_level() > 0) ob_end_flush(); }
add_action('wp_head', 'pso_ogp_start', 1);
add_action('wp_head', 'pso_ogp_end', 999);
XML SitemapXML Sitemap Index