答案 0 :(得分:0)
要从链接中删除nofollow,请在当前活动主题 functions.php 文件中添加以下代码。
rss钩不允许更改标记内的内容,因此请为您的feed创建自定义模板。
/**
* Deal with the custom RSS templates.
*/
function my_custom_rss() {
if ( 'photos' === get_query_var( 'post_type' ) ) {
get_template_part( 'feed', 'photos' );
} else {
get_template_part( 'feed', 'rss2' );
}
}
remove_all_actions( 'do_feed_rss2' );
add_action( 'do_feed_rss2', 'my_custom_rss', 10, 1 );
有关更多帮助,请参见以下链接:Click here。
您可以从核心的wordpress文件夹/wp-includes/feed-rss2.php
希望它能对您有所帮助。
答案 1 :(得分:0)
看看下面的代码片段:
Text