我需要更改中顶部显示的提要的标题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 );
但这不起作用。