// =============================== // 4プラットフォーム動画SEO(強化版) // =============================== add_action('wp_head', function() { if (!is_single()) return; global $post; $content = $post->post_content; // 手動VideoObjectがある場合はスキップ if (strpos($content, 'application/ld+json') !== false) { return; } // ------------------- // description自動最適化(高精度) // ------------------- // 女優名抽出(タイトルから) $actress = ''; if (preg_match('/([一-龥ぁ-んァ-ン]+)\s?(出演|ちゃん|さん)/u', get_the_title(), $m)) { $actress = $m[1]; } // 品番抽出 $code = ''; if (preg_match('/[A-Z]+-\d+/', get_the_title(), $m)) { $code = $m[0]; } // description生成 if ($actress && $code) { $desc = "{$actress}出演「{$code}」のサンプル動画。見どころや作品内容を紹介。"; } elseif ($actress) { $desc = "{$actress}のサンプル動画。見どころや作品内容を紹介。"; } else { $desc = "作品のサンプル動画。見どころや内容を紹介。"; } $video = [ "@context" => "https://schema.org", "@type" => "VideoObject", "name" => get_the_title(), "description" => $desc, "uploadDate" => get_the_date('c') ]; // ------------------- // FANZA(最強対応) // ------------------- if (strpos($content, 'dmm.co.jp') !== false) { // videoタグ優先(最強) if (preg_match('/]+src="([^"]+)"/i', $content, $m)) { $video["contentUrl"] = esc_url(strpos($m[1], 'http') === 0 ? $m[1] : 'https:' . $m[1]); } // poster → thumbnail if (preg_match('/poster="([^"]+)"/i', $content, $m)) { $video["thumbnailUrl"] = esc_url(strpos($m[1], 'http') === 0 ? $m[1] : 'https:' . $m[1]); } // iframe(fallback) if (!isset($video["contentUrl"]) && preg_match('/]+src="([^"]+)"/i', $content, $m)) { $video["embedUrl"] = esc_url($m[1]); } // ★ここが今回追加(サムネ強化) if (isset($video["embedUrl"]) && strpos($video["embedUrl"], 'dmm.co.jp') !== false) { if (preg_match('/cid=([a-z0-9]+)/i', $video["embedUrl"], $m)) { $cid = $m[1]; $video["thumbnailUrl"] = "https://pics.dmm.co.jp/mono/movie/adult/{$cid}/{$cid}pl.jpg"; } } } // ------------------- // SOKMIL(強化) // ------------------- elseif (strpos($content, 'sokmil.com') !== false) { if (preg_match('/]+src="([^"]+)"/i', $content, $m)) { $video["embedUrl"] = esc_url($m[1]); } } // ------------------- // MGS(改善) // ------------------- elseif (strpos($content, 'mgstage.com') !== false) { // 品番抽出 if (preg_match('/p=([^&]+)/', $content, $m)) { $video["name"] .= '(サンプル動画)'; } $video["embedUrl"] = get_permalink(); } // ------------------- // DUGA(改善) // ------------------- elseif (strpos($content, 'duga.jp') !== false) { // ID抽出 if (preg_match('/data-p="([^"]+)"/', $content, $m)) { $video["name"] .= '(サンプル動画)'; } $video["embedUrl"] = get_permalink(); } // ------------------- // サムネ fallback(重要) // ------------------- if (!isset($video["thumbnailUrl"]) && has_post_thumbnail()) { $video["thumbnailUrl"] = get_the_post_thumbnail_url($post->ID, 'full'); } // ------------------- // duration(あれば) // ------------------- // 手動で追加したい場合ここに書ける // ------------------- // 出力条件 // ------------------- if (isset($video["contentUrl"]) || isset($video["embedUrl"])) { echo ''; } }); 日本語 | ページ 132 | 秘密の秘蜜

日本語

🔍 もっと多くの女優を探す

Cunnisurge 女優名鑑

🔞 年齢確認

当サイトは18歳以上を対象としたコンテンツを含みます。
あなたは18歳以上ですか?