Monday, November 10, 2014

How to Make Walka Style External Links No-follow Automatically in Blogger

How to Make Walka Style External Links No-follow Automatically in Blogger
Firstly, Before creating all external links no-follow you've got to grasp simply How to Make Walka Style External Links No-follow Automatically in Blogger what's a no-follow link and why to supply all the external links no-follow. Here within the following paragraphs you may notice complete info regarding simply what no-follow link, the rel="nofollow" attribute and recommendations on a way to add the rel="nofollow" attribute in blogger.
What is Nofollow Link?
Like the name implies the no-follow link is admittedly a link that tells the program bots don't follow additionally as crawl the subsequent link.

What is rel="nofollow" Attribute?

rel="nofollow" is Associate in Nursing attribute that helps your web site to take care of its PAGE RANK juice or maybe SEO by showing the program optimisation to not look at a particular link. It's probably you've got seen this nofollow tag from the meta tag- automaton. The nofollow attribute tells the program bots to not crawl any specific link. This nofollow tag can even be used with hyperlinks. you'll simply add rel="nofollow" to get any link nofollow or maybe rel="dofollow" to get the link ( dofollow) .Dofollow is just opposite so as to nofollow,  it tells the program optimisation larva so as to crawl this page.

Firstly, Before creating all external links no-follow you've got to grasp simply what's a no-follow link and why to supply all the external links no-follow. Here within the following paragraphs you may notice complete info regarding simply what no-follow link, the rel="nofollow" attribute and recommendations on a way to add the rel="nofollow" attribute in blogger.
What is Nofollow Link?
Like the name implies the no-follow link is admittedly a link that tells the program bots don't follow additionally as crawl the subsequent link.

What is rel="nofollow" Attribute?

rel="nofollow" is Associate in Nursing attribute that helps your web site to take care of its PAGE RANK juice or maybe SEO by showing the program optimisation to not look at a particular link. It's probably you've got seen this nofollow tag from the meta tag- automaton. The nofollow attribute tells the program bots to not crawl any specific link. This nofollow tag can even be used with hyperlinks. you'll simply add rel="nofollow" to get any link nofollow or maybe rel="dofollow" to get the link ( dofollow) .Dofollow is just opposite so as to nofollow,  it tells the program optimisation larva so as to crawl this page.
Firstly, Before making all external links no-follow you have to know just what is a no-follow link and why to produce all the external links no-follow. Here in the following paragraphs you will find complete information about just what no-follow link, the rel="nofollow" attribute and tips on how to add the rel="nofollow" attribute in blogger.
What is Nofollow Link?
Like the name implies the no-follow link is really a link that tells the search engine bots do not follow as well as crawl the following link.

What is rel="nofollow" Attribute?

rel="nofollow" is an attribute which helps your site to maintain its PAGE RANK juice or perhaps SEO by showing the search engine optimization not to check out a specific link. It's likely you have seen this nofollow tag from the meta tag- Robot. The nofollow attribute tells the search engine bots not to crawl any specific link. This nofollow tag can also be used with hyperlinks. You can just add rel="nofollow" to generate any link nofollow or perhaps rel="dofollow" to generate the link ( dofollow) .Dofollow is simply opposite in order to nofollow,  it tells the search engine optimization bot in order to crawl this page.

Pertaining to eg.:
 <a href="http://axafashionblog.blogspot.co.uk">axafashionblog</a>
is a example link which you need to make nofollow. Now all you need to do is add the rel="nofollow" atribute like this:

<a href="http://axafashionblog.blogspot.co.uk" rel="nofollow">axafashionblog</a>

Okay, now do you know what is a new nofollow link, what is rel="nofollow" attribute even so the question continues to be "Why add the rel="nofollow" attribute from the external hyperlinks? " or perhaps "Why to make all external links nofollow?.

Why to make all External Links Nofollow?

 Just like I have talked earlier that rel="nofollow" attribute is made to prevent search engine bots never to crawl almost any specific page. So currently the issue arises "Why do we tell google bots never to crawl almost any external page? "

It is because the search engines pagerank, alexa position etc enhances getting huge backlinks from social bookmark creating sites, net directories, web page link exchanging approach or specifically access by means of users. At normal intervals search engine bots listing links with your blog (both internal and external links). The more better search engine bots crawl your links the better you'll receive positioned on search engine ranking, but in case your blog has a great deal of external links and you are not using nofollow feature then  search engine bots will probably prefer these pages certainly not yours and therefore referring targeted visitors to some others sites along with your blog search engine ranking will go down.

How to Make All External Links Nofollow?

Go to Blogger Dashboard >> Template.
Click on Edit HTML button.
Find the </head> tag by pressing ctrl+f  and typing </head> in the search box.
Now add the following code above the </head> tag :

<script src='http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js' type='text/javascript'></script>
<script type='text/javascript'>
var a = $(this);
var href = a.attr('href');
$(document).ready(function() {

$("a[href^='http://']").each(function () {
if(this.href.indexOf(location.hostname) == -1) {
$(this).attr('target', '_blank');
$(this).attr('title', 'Click to open in a new window');
$(this).attr('rel', 'nofollow');
}
}
);
$("a[href^='https://']").each(function () {
if(this.href.indexOf(location.hostname) == -1) {
$(this).attr('target', '_blank');
$(this).attr('title', 'Click to open in a new window');
$(this).attr('rel', 'nofollow');
}
}
);

});

</script>

Do not add the text in red if you have JQuery plugin installed.
Save the changes and you are done.

No comments:

Post a Comment