How To Easily Install Blog SEO Smart Links - This time I will share a plugin SEO Smart Links , which is a WordPress plugin that works to ch...
How To Easily Install Blog SEO Smart Links - This time I will share a plugin SEO Smart Links , which is a WordPress plugin that works to change every word that is specified in an article into a link .
If you want the plugin above only appear on post pages only, please add a special conditional tag page post
Reference : Some Functions Tag Conditional At Widget Here
Save the template
On the marked code , replace 'Template' the keywords specified and replace http://www.YOUR-DOMAIN-NAME.com/ with the url of your blog .
In the above code you can add more keywords below, as an example
You can also add words into bold , for example
How it Works
This plugin will read every word that has been determined in the article . For example, if you add the word Template or Theme on the plugin , then every word will be automatically turned into a link .How to Install
Go to Blogger > Templates > Then add the following code before the < / body><script type='text/javascript'>
function smartLink(){
this.keywdHref = new Object();
this.add = function(keyword, href){
if(keyword.substr(0,1) != " "){keyword = " " + keyword;}
this.keywdHref[keyword] = href;
}
this.createAnchor = function(){
var objs = document.getElementsByTagName("div");
for(var i=0; i<objs.length; i++){
var obj = objs[i];
if(obj.className.indexOf("post-body")>-1){
var content = obj.innerHTML;
for(var keyword in this.keywdHref){
var href = this.keywdHref[keyword];
var newstr = content.replace(keyword, "<a href='"+href+"'>"+keyword+"</a>", "gi");
obj.innerHTML = newstr;
content = newstr;
}
}
}
}
this.startScript = function(){
var onLoad = window.onload;
window.onload = function(){
if(onLoad){onLoad();}
setTimeout("f.createAnchor()", 100);
}
}
}
</script>
<script type='text/javascript'>
var f = new smartLink();
f.add("Template", "http://www.YOUR-DOMAIN-NAME.com/");
f.startScript();
</script>
If you want the plugin above only appear on post pages only, please add a special conditional tag page post
Reference : Some Functions Tag Conditional At Widget Here
Save the template
On the marked code , replace 'Template' the keywords specified and replace http://www.YOUR-DOMAIN-NAME.com/ with the url of your blog .
In the above code you can add more keywords below, as an example
f.add("Theme", "http://www.YOUR-DOMAIN-NAME.com/");
f.add("Template", "http://www.YOUR-DOMAIN-NAME.com/");
f.add("Tutroials", "http://www.YOUR-DOMAIN-NAME.com/");
You can also add words into bold , for example
f.add("<b>Template</b>", "http://www.YOUR-DOMAIN-NAME.com/");