怪僧在前面的文章中介绍过在文章开头和结尾添加广告的方法,今天为大家介绍的是在文章中添加广告的方法。
据说把广告放到文章中可以大大的提高点击率,嘿嘿。而且广告修改起来非常的方便,省去了大家每次编辑文章时添加广告诸多不便。
本方法完全利用wordpress的more标签来实现,有兴趣的朋友可以尝试下。
步骤如下:
1.打开你主题文件下的function.php
2.在function.php的第2行添加如下代码(注意要放在<?php .. ?>里面)
- add_filter('the_content', 'adsense_adder_at_more_tag');
- function adsense_adder_at_more_tag($text) { if( is_single()) : $ads_text =' 请将广告代码贴在这里';
- $pos1 = strpos($text, '<span id="more-');
- $pos2 = strpos($text, '</span>', $pos1); $text1 = substr($text, 0, $pos2);
- $text2 = substr($text, $ pos2);
- $text = $text1 . $ads_text . $text2; endif; return $text; }
3.用你的广告代码替代代码中的【请将广告代码贴在这里】,保存。大功告成!就这么简单!
本文最后更新于:2020-01-02 19:27