WordPress编辑主题的 functions.php 文件给文章添加广告位。
增加插件导致臃肿,直接在主题functions.php 文件增加2段代码来的更方便。
话不多说,直接上代码:
在列表等页插入广告
/* * WordPress 在文章内容中间插入广告//由www.3520.net提供学习 */
//在列表页段落后面插入广告
<?php if ($wp_query->current_post == 2) : ?>
<div>广告代码</div>
<?php endif; ?>
<?php if ($wp_query->found_posts < 3 and $wp_query->current_post == ($wp_query->found_posts - 1)): ?>
<div>广告代码</div>
</script>
<?php endif; ?>
在第3篇文章(索引为2)的下方插入广告, 如果文章总数量小于3, 则在该列表的最后一篇文章下方插入广告
文章内容页插入广告
/* * WordPress 在文章内容中间插入广告//由www.3520.net提供学习 */
//在文章内容的第五段后面插入广告
add_filter( 'the_content', 'prefix_insert_post_ads' );
function prefix_insert_post_ads( $content ) {
$ad_code = '<div>广告代码</div>';
if ( is_single() && ! is_admin() ) {
// 下面一行数字5代表段落
return prefix_insert_after_paragraph( $ad_code, 5, $content );
}
return $content;
}
// 插入广告所需的功能代码
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 );
}
其中第8行有一个数字5,表示此广告将插入到文章的第二段落后面,如果要插入第一段后面就把5改成数字1,方法就是如此简单。
共有 0 条评论