@charset "UTF-8";
/*
    Template: swell
    Theme Name: SWELL CHILD
    Theme URI: https://swell-theme.com/
    Description: SWELLの子テーマ
    Version: 1.0.0
    Author: LOOS WEB STUDIO
    Author URI: https://loos-web-studio.com/

    License: GNU General Public License
    License URI: http://www.gnu.org/licenses/gpl.html
*/


//////////////////////////////////////////////////////////////////////////
// X個ごと（Xn番目）のh2の終わりに [ad] 広告 を挿入するコード
function swl_custom__add_ad_automatically( $the_content ) {
	$X = 1;

	// 投稿ページ以外は何もしない。
	if ( ! is_single() ) return $the_content;

	// 本文内のH2を取得 PREG_SET_ORDER
	$has_h2 = preg_match_all( '/^<h2.*?>.+?<\/h2>$/im', $the_content, $h2_list, PREG_SET_ORDER );

	// h2がなければ何もしない
	if ( ! $has_h2 ) return $the_content;

	// Xn番目の見出しのコンテンツの最後 = Xn+1 番目の見出しの直前 にコードを挿入する
	foreach ( $h2_list as $num => $h2 ) {
		if ( $num && ( $num % $X === 0 ) ) {
			$the_content = str_replace( $h2[0], '[ad]' . $h2[0], $the_content );
		}
	}

	return $the_content;
}
add_filter( 'the_content', 'swl_custom__add_ad_automatically' );

/// /// /// /// /// 