如何从提要页面中删除rel =“ nofollow”

时间:2018-08-02 08:38:46

标签: wordpress nofollow

this页中,每个链接都有rel="nofollow"

你们能告诉我如何从该页面中删除nofollow。

我正在使用WordPress。

希望得到您身边的帮助

预先感谢

2 个答案:

答案 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