在开发WP主题时,我要提到的是,您需要启用automatic-feed-links 通过向函数添加以下函数调用。php文件:
add_theme_support( \'automatic-feed-links\' );
之后,RSS链接将自动添加到站点的头部。最佳做法是为添加此调用函数
after_setup_theme
吊钩搬运:
function my_theme_setup() {
add_theme_support( \'automatic-feed-links\' );
}
add_action( \'after_setup_theme\', \'my_theme_setup\' );