文章中添加广告-wordpress终极技巧

2012年09月17日20:03:42 发表评论 热度1,912 ℃

文章中添加广告-wordpress终极技巧          怪僧在前面的文章中介绍过在文章开头和结尾添加广告的方法,今天为大家介绍的是在文章中添加广告的方法。

据说把广告放到文章中可以大大的提高点击率,嘿嘿。而且广告修改起来非常的方便,省去了大家每次编辑文章时添加广告诸多不便。

本方法完全利用wordpressmore标签来实现,有兴趣的朋友可以尝试下。
步骤如下:
1.打开你主题文件下的function.php
2.在function.php的第2行添加如下代码(注意要放在<?php ..  ?>里面)

  1. add_filter('the_content', 'adsense_adder_at_more_tag');
  2. function adsense_adder_at_more_tag($text) { if( is_single()) : $ads_text =' 请将广告代码贴在这里';
  3. $pos1 = strpos($text, '<span id="more-');
  4. $pos2 = strpos($text, '</span>', $pos1); $text1 = substr($text, 0, $pos2);
  5. $text2 = substr($text, $ pos2);
  6. $text = $text1 . $ads_text . $text2endifreturn $text; }

3.用你的广告代码替代代码中的【请将广告代码贴在这里】,保存。大功告成!就这么简单!

本文最后更新于:2020-01-02 19:27
瓜皮猪

发表评论

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen: