更改RSS提要标题不起作用

时间:2012-01-16 作者:fxfuture

我正在尝试更改我的RSS提要标题,以便提前显示帖子类型,但它不起作用。

代码如下。有什么想法吗?

谢谢

function changeRSStitles($content) {

global $post;

if (get_post_type($post) == \'literature\') {
    $content = \'Literature: \'.$content;
} else if (get_post_type($post) == \'recipe\') {
    $content = \'Recipe: \'.$content;
} else if (get_post_type($post) == \'restaurant\') {
    $content = \'Restaurant: \'.$content;
} else if (get_post_type($post) == \'post\') {
    $content = \'Sugar Street Blog: \'.$content;
}else {
    $content = $content;
}

return $content;
}

add_filter(\'the_title_rss\', \'changeRSStitles\');

1 个回复
最合适的回答,由SO网友:fxfuture 整理而成

成功了!只是需要重新同步feedburner的feed

结束