我正在尝试添加自定义的RSS2模板,但无法停用当前的RSS2提要。删除do\\u feed\\u rss2操作似乎不起作用。我复制了feed-rss2。php到我的主题文件夹并对其进行了修改。但我没有成功删除默认的RSS2模板。
remove_all_actions( \'do_feed_rss2\' );
add_action( \'do_feed_rss2\', function( $for_comments ) {
if ( $for_comments )
load_template( ABSPATH . WPINC . \'/feed-rss2-comments.php\' );
else
{
if ( $rss_template = locate_template( \'feed-rss2.php\' ) )
// locate_template() returns path to file
// if either the child theme or the parent theme have overridden the template
load_template( $rss_template );
else
load_template( ABSPATH . WPINC . \'/feed-rss2.php\' );
}
},10,1);有什么想法吗?
更新:最后我没有看到任何提要,但是如果注释掉这些代码,提要就不会回来,即使我刷新了重写规则。