我没有找到替换默认提要“提要”的方法,但我能够添加一个新提要“rss提要”,并更改了标题中的链接,表示新提要是默认提要:
function my_rss_template() {
add_feed( \'rss-feed\', \'my_custom_rss_render\' );
}
function my_custom_rss_render() {
get_template_part( \'feed\', \'rss-feed\' );
}
add_action(\'init\',\'my_rss_template\');
function custom_rss($output, $show) {
if (in_array($show, array(\'rss_url\', \'rss2_url\', \'rss\', \'rss2\', \'\')))
$output = site_url() . \'/rss-feed\';
return $output;
}
add_filter(\'bloginfo_url\', \'custom_rss\', 10, 2);
add_filter(\'feed_link\', \'custom_rss\', 10, 2);
我复制了feed-rss2文件。php从wp-inlcudes文件夹到我的主题文件夹,将其重命名为rss-feed。php并根据我的需要对其进行了修改。之后,不要忘记在仪表板设置中更新永久链接。