在WordPress的Feed中插入广告

实现方法很简单,只需要将下面的代码放到function.php里即可:

< ?phpfunction insertAds($content) {    $content = $content.'
   广告位置
   ';    return $content;}add_filter('the_excerpt_rss', 'insertAds');add_filter('the_content_rss', 'insertAds');?>

使用原理:
我们首先建立一个函数 insertAds() 这个函数包含一个内容,就是盛放广告代码的 $content ,接着使用 add_filter() 重写 the_content_rss() 然后重新利用 the_excerpt_rss() 输出 Feed 内容。

分享至
一键收藏,随时查看,分享好友!
0人
了这篇文章
类别:未分类┆阅读( 0)┆评论( 0) ┆ 返回博主首页┆ 返回博客首页
上一篇 让WordPress达到最高性能的13个优化技巧 下一篇 Wordpress 提速之 Gzip 压缩

你可能感兴趣的:(wordpress,职场,广告,休闲)