admin管理员组

文章数量:1122846

I need to remove a specific link.<a href="xyz" **rel="nofollow"**>remove a nofollow link using call to action plugin . may i know how to know the rel="nofollow". i checked in plugin file but. I can't change it. so if you have any suggestion give me fast.

I need to remove a specific link.<a href="xyz.com" **rel="nofollow"**>remove a nofollow link using call to action plugin . may i know how to know the rel="nofollow". i checked in plugin file but. I can't change it. so if you have any suggestion give me fast.

Share Improve this question asked Jan 10, 2019 at 10:00 user158579user158579 4
  • What plugin? How do you expect people to help if you don't even name the plugin? Regardless, 3rd-party plugins are off-topic here. – Jacob Peattie Commented Jan 10, 2019 at 10:07
  • i i think you want to remove from every nofollow link from that page. m i right – user147874 Commented Jan 10, 2019 at 10:10
  • yes need nofollow link every – user158579 Commented Jan 10, 2019 at 10:12
  • i face this issues when i do seo task. it needed to remove rel="nofollow" attr from all a tags. i hope my code helps you. – user147874 Commented Jan 10, 2019 at 10:27
Add a comment  | 

1 Answer 1

Reset to default -2

i hope its help you

i'm doing use of jquery

$("a").each(function(){
    if($(this).attr("rel")){
        $(this).removeAttr("rel");
    }
});

it will remove all nofollow link from all anchor tag even plugin link too.

本文标签: how to remove a relquotnofollowquot using call to action plugin