Merhaba arkadaşlar daha önce açıldımı bilmiyorum ama bana lazım olunca paylaşmak istedim.
Seçili hale getirmeyi engelleme kodu
Wordpress'de single.php dosyasında </body> den önce bir yere koyun.
Seçili hale getirmeyi engelleme kodu
Wordpress'de single.php dosyasında </body> den önce bir yere koyun.
Kod:
<script language="JavaScript1.2">
function disableselect(e){
return false
}
function reEnable(){
return true
}
//if IE4+
document.onselectstart=new Function ("return false")
//if NS6
if (window.sidebar){
document.onmousedown=disableselect
document.onclick=reEnable
}
</script>