将广告插入WordPress默认RSS提要

时间:2011-05-24 作者:Sledge81

我希望在wordpress默认rss提要中插入广告方面能找到一些帮助(我不使用feedburner)

<?php
function insertAds($content) {
    $content = $content.\'<hr /><a href="http://www.wprecipes.com">Have you visited WpRecipes today?</a><hr />\';
    return $content;
}
add_filter(\'the_excerpt_rss\', \'insertAds\');
add_filter(\'the_content_rss\', \'insertAds\');
?>

Source here

但我读到,\\u extract\\u rss和\\u content\\u rss有点不受欢迎。有谁能建议我现在使用的钩子吗?

谢谢

2 个回复
最合适的回答,由SO网友:Dave Konopka 整理而成

看看the_content_feed 作为\\u content\\u rss的替代品。

SO网友:fuxia

这些过滤器没有被弃用。它们用于wp-includes/default-filters.php

但你应该prefix your function name.

结束