FX_trade

2024年4月
« 2月    
1234567
891011121314
15161718192021
22232425262728
2930  

Ads

ページ上部へ戻る
// 本文中にアドセンス表示 function add_ads_before_h2($the_content) { if (is_single()) { $ads = <<< EOF

Ads

EOF; $h2 = '/^.+?<\/h2>$/im';//H2見出しのパターン if ( preg_match_all( $h2, $the_content, $h2s )) { if ( $h2s[0] ) { // 1つ目のh2見出しの上にアドセンス挿入 if ( $h2s[0][0] ) { $the_content = str_replace($h2s[0][0], $ads.$h2s[0][0], $the_content); } } } } return $the_content; } add_filter('the_content','add_ads_before_h2');