Skip to content

Instantly share code, notes, and snippets.

@mopeneko
Last active July 3, 2023 12:13
Show Gist options
  • Save mopeneko/b7e2f85ea7bf8b2e926cdf7fa6bc3879 to your computer and use it in GitHub Desktop.
Save mopeneko/b7e2f85ea7bf8b2e926cdf7fa6bc3879 to your computer and use it in GitHub Desktop.
[THE THOR] h2 のn番目に広告コードを挿入する
<?php
// h2 のn番目に広告コードを挿入する
function insert_adcode($the_content) {
$n = 2;
// 固定ページではそのまま表示
if (!is_single()) {
return $the_content;
}
$has_h2 = preg_match_all('/^<h2.*?>.+?<\/h2>$/im', $the_content, $h2_list, PREG_SET_ORDER);
// h2タグが無ければそのまま表示
if (!$has_h2) {
return $the_content;
}
// h2タグがnつ以下ならそのまま表示
if (count($h2_list) <= $n) {
return $the_content;
}
$h2 = $h2_list[$n-1];
$the_content = str_replace($h2[0], '[adcode]' . $h2[0], $the_content);
return $the_content;
}
add_filter('the_content', 'insert_adcode');
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment