我在我的functions.php文件中使用了以下代码,将Google广告添加到每个帖子的第二段。就目前而言,代码可以工作,但仅限于帖子。我希望这个论坛上的某个人可以帮助调整代码,这样这个功能就可以应用到页面和帖子了。
//Insert ads after second paragraph of single post content.
add_filter( 'the_content', 'prefix_insert_post_ads' );
function prefix_insert_post_ads( $content ) {
$ad_code = '<div>AD Code to go here</div>';
if ( is_single() && ! is_admin() ) {
return prefix_insert_after_paragraph( $ad_code, 2, $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 );
}
答案 0 :(得分:1)
而不是只测试是否显示单个帖子的is_single()
,而是应使用is_singular()来测试is_single()
,is_page()
或is_attachment()