How to add nofollow to all external links in Blogger
In this article, we will show you How to add nofollow to all external links in Blogger Through jQuery Plugin.
The first thing you need to do is to add an install a jQuery plugin into your Blogger Template. Go to Blogger.com >> Template >> Edit HTML >> Proceed, search for the ending </head> tag and just above it paste the following JavaScript coding.
<!--Remove this if you are already using any jQuery.js file--><script src='http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.js' type='text/javascript'></script><!--End-->From the above coding, just replace https://www.devilapk.xyz with your blog’s URL and save your template. Now this plugin would automatically add nofollow attribution as well as target="_blank" to your all external links except your own domain.
<script type="text/javascript">jQuery(document).ready(function () {
jQuery('a[href*="http://"]:not([href*="https://www.devilapk.xyz"])').attr('rel', 'nofollow');
jQuery('a[href*="https://"]:not([href*="https://www.devilapk.xyz"])').attr("target", "_blank");
});</script>
Frequently Asked Questions:
How to check nofollow Links on a webpage?There are numerous ways of checking how many URLs on a webpage have nofollow attributions. However, we would prefer you to use a Free Google chrome extension that highlights all nofollow links automatically whenever a page stops loading.
Downloading Link for FireFox Users: https://za.gl/zcqiWDx
Why to nofollow external links?
Nofollow is a value which is used to instruct some search engines that a hyperlink should not influence the external links targeted ranking in Search engine results. In simple words, it does not allow to pass the Page Rank juice to any other external link.
Does it is good for SEO?
It is indeed a sensible act to nofollow all external links because it does not fully pass the ranking juice to other site. However, some SEO specialists and experts always states that even a nofollow Link has its significance because a backlink remains a backlink it does not matters whether it is a nofollow backlink or a dofollow backlink.
Sharing is Caring.. Keep Visiting for more New Posts.