欢迎访问服务器技术网-www.fuwuqijishu.com

WordPress利用插件和非插件实现任意段落添加广告代码片段

网站建设 fuwuqijishu 2年前 (2022-09-04) 162次浏览 0个评论 扫描二维码

在”自动在WordPress内容中插入广告位代码的方法”文章中有分享到可以随机在WordPress文章中加入广告代码的方法,但是有网友提到是否可以实现在某一个段落后添加广告代码呢?既然WordPress这么强大,你的想法别人肯定早就想到,所以在这里我们可以看到有插件实现和非插件实现的方法记录。

第一、Insert Post Ads插件方法

下载和安装”Insert Post Ads “插件。

WordPress利用插件和非插件实现任意段落添加广告代码片段

这里我们肯定熟悉的,直接安装激活。

WordPress利用插件和非插件实现任意段落添加广告代码片段

这款Insert Post Ads 插件可以实现在内容上、下,以及特定段落中添加代码,根据上图我们添加创建就可以。插件方法还是比较简单实现的。

第二、无插件实现段落广告添加

//指定代码加入WP某个段落中 Edit By itbulu.com
add_filter( ‘the_content’, ‘prefix_insert_post_ads’ );
function prefix_insert_post_ads( $content ) {
$ad_code = ‘<div>加入我们代码的HTML</div>’;
if ( is_single() && ! is_admin() ) {
// 下面红色字符修改第几段落 3
return prefix_insert_after_paragraph( $ad_code, 3, $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 );
}

我们知道的,将代码添加到当前主题Functions.php,但是可能有些主题或者插件冲突,如果不兼容那我们就试试插件方法。

总归有一个方法适合你。

喜欢 (0)
发表我的评论
取消评论
表情 贴图 加粗 删除线 居中 斜体 签到

Hi,您需要填写昵称和邮箱!

  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址

Warning: error_log(/www/wwwroot/fuwiqijishu/wp-content/plugins/spider-analyser/#log/log-2202.txt): failed to open stream: No such file or directory in /www/wwwroot/fuwiqijishu/wp-content/plugins/spider-analyser/spider.class.php on line 2900