更改WordPress RSS提要的标题

时间:2017-07-12 作者:Rohit Kishore

我需要更改中顶部显示的提要的标题mywebsite.com/feed. 我尝试过在wp includes中编辑文件,也尝试过以下代码:

 function filter_wp_title_rss( $get_wp_title_rss, $deprecated ) { 
    // make filter magic happen here... 
    return \'new title\'; 
}; 

// add the filter 
add_filter( \'wp_title_rss\', \'filter_wp_title_rss\', 10, 2 ); 
但这不起作用。

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

在函数中。php主题:

add_filter( \'wp_title_rss\', \'my_rss_filter\', 20, 1 );

function my_rss_filter( $rss_title ) {
    $rss_title = \'New Title\';
    return $rss_title;
}
我添加了一个较低的优先级20,并且完全抛弃了那些不推荐的东西。当然,您可以按原样返回一个文本字符串,但为了更完整的参考,我包含了其余的文本字符串。

结束