How To Automatically Convert Keywords into Active Links
Having inbound links in your articles causes you to get higher rankings and increases your page views of your website.
There are different ways to create inbound links like you can make them manually or automatically.
I have recently shared a post in which I have explained how you can add related inbound links in your articles automatically.
Every time when you write a post you usually use your keywords in your post and if you want to automatically convert those keywords into alive and active links you can do that easily, well this post is all about it.
What are live or active links?
The term live or active links refer to the links which are clickable.If you are a WordPress user then you will find tons of plugins to automatically convert keywords into active links but it is far more difficult on blogger to automatically convert your keywords into active links.
But in this article, I have made that easy for you and now you can do that in your blogger blog easily. It's not a manual method it's an automatic way you just have to place a single JavaScript code in your blogger blog to make that possible.
In this article, I will provide you with a JavaScript code that you can use in your blogger blog to convert your keywords into active links so that your users can click on that link and see related articles to that keyword.
If you see this at the point of SEO then this technique is very best for converting your keywords into active links and for making inbound links.
So now if you want to add this functionality in blogger follow the steps provided below and do as it is said.
Steps to follow:
- Go to Blogger Dashboard
- Go to Theme/Template Section
- Click Edit HTML
- Now Search for </body>
- Now copy the code provided below and paste it just above </body> tag.
- Save Theme/Template
<b:if cond='data:blog.pageType == "item"'>
<script>
//<![CDATA[
function makelink(word, link) {
$('.post-body').each(function() {
var me = $(this),
txt = me.html(),
found = me.find(word).length,
regex = new RegExp('(' + word + ')(?![^(<a.*?>).]*?<\/a>)','gi');
if (found != -1) {
txt = txt.replace(regex, '<a href="'+link+'">$1</a>');
me.html(txt);
}
});
}
/*Usage*/
makelink('seo','https://www.softwebtuts.com');
//]]>
</script>
</b:if>
The above code will search for the element with ClassName post-body and in that div it will perform its functionality. If this class is not found this code will not work.
So you simply have to at the course provided in your blogger blog and it will automatically run when your blog is loaded but as you can see that I have used conditional tags for blogger so that's why this login will only work on post pages.
If you want to add more keywords in the list you simply have to add this JavaScript code below.
/*Here SEO is the keyword and url is a link*/
makelink('seo','https://www.softwebtuts.com');
In the above code replaced keyword with your keyword and link with the link which want to make sure that keyword.
After installing this plugin in your blogger blog you will see that you will be getting more page views.
Conclusion:
So in this article, I have shared with you JavaScript code basically a plugin that will convert you can say automatically convert your keywords that we use in your article into active links.I hope that this blogger plugin JavaScript code will help you a lot and will help you in increasing your revenue.
After installing this plugin for adding this JavaScript in your blogger blog you will get tons of inbound links in your articles and you don't have to make inbound links manually.
If you face any difficulty feel free to comment below because I am here to help you.
Post a Comment