hocam öncelikle ilginiz ve yardımlarınız için çok teşekkür ederim ben bu kod bilgisini wordpress sistemde tam olarak nereye entegre ederek çalıştırabilirim acaba ?
https://tr.wordpress.org/plugins/custom-css-js/
bu eklentiyi indirin.
custom css oluşturup içerisine:
#reklam {
display: active;
position: fixed;
z-index: 99999;
left: 0;
top: 0;
width: 100%;
height: 100%;
background-color: rgba(0,0,0,0.1);/*rgba(0,0,0,0); yaparsanız görünmez olur su an görmeniz için 0.1 biraktim*/
}custom js oluşturup içerisine:
document.addEventListener("DOMContentLoaded", function(event) {
//Do work
var body = document.getElementsByTagName('body');
document.body.innerHTML +='<section id="reklam"/>';
var reklam = document.getElementById('reklam');
window.onclick = function(event) {
if (event.target == reklam) {
reklam.style.display = "none";
window.open('https://www.google.com', '_blank');/* acmak istediginiz site buraya gelecek*/
}
}
});