Cara Menghapus Komentar Spam Otomatis menggunakan Css
- Pertama masuk terlebih dahulu ke editor template [ edit html ]
- Kemudian Pasang Css berikut tepat diatas kode ]]>
.comment-content a {
display: none;
}
- Klik Save Template [ dengan memasang css tersebut kini link aktif / spammer otomatis akan terhapus dengan sendirinya ]
- Sama seperti tadi , masuk ke editor template dulu
- Kemudian cari kode </body>[ kode ini biasanya terletak paling bawah ]
- Pasang javascript berikut tepat diatas kode </body> tadi
<script
src="http://code.jquery.com/jquery-latest.min.js"
type="text/javascript"></script>
<script>
$('.comment-content a[rel$=nofollow]').replaceWith(function(){return
($(this).text());});
</script>
- Terakhir, simpan template dan lihat hasilnya
No comments:
Post a Comment