誰かがこの質問を手伝ってくれることを願っています。各投稿の最初の段落の後に Adsense 広告を配置するために、functions.php ファイルに以下の作業コードがあります。このコードを微調整して、2 番目の段落の後に別の広告を追加できるようにする方法を誰かが知っていることを願っています。ということで、一言で言えば、1段落目と2段落目以降に広告が欲しい。
ありがとう.....以下のコード。
//Insert ads after first paragraph of single post content.
add_filter( 'the_content', 'prefix_insert_post_ads' );
function prefix_insert_post_ads( $content ) {
$ad_code = '<div>Ads code goes here</div>';
if ( is_single() && ! is_admin() ) {
return prefix_insert_after_paragraph( $ad_code, 1, $content );
}
return $content;
}
// Parent Function that makes the magic happen
function prefix_insert_after_paragraph( $insertion, $paragraph_id, $content ) {
$closing_p = '</p>';
$paragraphs = explode( $closing_p, $content );
foreach ($paragraphs as $index => $paragraph) {
if ( trim( $paragraph ) ) {
$paragraphs[$index] .= $closing_p;
}
if ( $paragraph_id == $index + 1 ) {
$paragraphs[$index] .= $insertion;
}
}
return implode( '', $paragraphs );
}