我希望在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有点不受欢迎。有谁能建议我现在使用的钩子吗?
谢谢