Showing posts with label otomatis. Show all posts
Showing posts with label otomatis. Show all posts
Tuesday, September 20, 2016
Cara Hapus Otomatis Komentar Spam di Blog
Cara Hapus Otomatis Komentar Spam di Blog

Kode anti-spam comments ini ampuh membasmi komentar berisi link hidup/aktif yang biasa disebar oleh blogger lain, termasuk para penjual obat, admin blog judi online, taruhan online, dll.
KODE ANTI KOMENTAR SPAM UNTUK BLOGGER
(Simpan di atad kode <body> atau </head>)
(Simpan di atad kode <body> atau </head>)
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script type=text/javascript>
jQuery(document).ready(function(){
jQuery("#comments p").find("a").replaceWith("<mark>Spam Detected!</mark> Link aktif otomatis terhapus!!!");
});
</script>
Catatan:
<script type=text/javascript>
jQuery(document).ready(function(){
jQuery("#comments p").find("a").replaceWith("<mark>Spam Detected!</mark> Link aktif otomatis terhapus!!!");
});
</script>
Catatan:
- Kode warna biru (jQuery) tidak usah dimasukkan jika sudah ada di template.
- Anda bisa ganti kata-kata yang warna merah dengan versi Anda.
Anda bisa mengetes hasil Cara Hapus Otomatis Komentar Spam di Blog atau kode anti-komentar spam ini dengan komentar menyertakan link hidup. Lihat contohnya di kolom komentar About.
Kode untuk menyertakan link aktif dalam komentar:
Nice info gan, kunbalnya ya <a href=http://newjohnywuss.blogspot.com>NJW</a> !!!
Lihat di kolom komentar di bawah ini, link hidup NJW dalam kode di atas akan lenyap dengan kode anti-komentar spam di atas.
APA ITU KOMENTAR SPAM?
Comment spam is a term used by spam blacklist servers such as Project Honey Pot to refer to a broad category of spambot or spammer postings which abuse web-based forms to post unsolicited advertisements as comments on forums, blogs, wikis and online guestbooks. Comment spam - Wikipedia, the free encyclopedia.
Available link for download
Friday, August 26, 2016
Cara Membuat Link Otomatis di Postingan Blog
Cara Membuat Link Otomatis di Postingan Blog
Cara Membuat Internal Link & Eksternal Link Otomatis di Postingan Blog. Tanpa harus susah-payah secara manual membuat link di artikel. Contohnya, kata blog ini otomatis nge-link ke CB Blogger.

KODE SEO SMART LINK
Simpan di atas kode </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("CB", "http://www.contohblog.com/");
f.startScript();
</script>
JIKA ingin menambahkan kata kunci lainnya untuk otomatis link, tambahkan:
f.add("SEO", "http://www.contohblog.com/");
f.add("Template", "http://www.contohblog.com/");
f.add("Blogger", "http://www.blogger.com/");
Available link for download
Subscribe to:
Posts (Atom)