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.
- 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
1 Answer
Reset to default -2i 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
版权声明:本文标题:how to remove a rel="nofollow" using call to action plugin 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1736295665a1929617.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论