본문 바로가기
◼️티스토리 운영 팁◼️

애드센스 광고 안 나올 때(공백) 해결 방법

by #€£¥¥++ 2022. 5. 11.
728x90
반응형



소스 1)

<script type="text/javascript">
    if(typeof(history.pushState) == 'function')
    {
    var CatagoryURL = location.href;
    CatagoryURL = CatagoryURL.replace(/\?category=([0-9]+)/ig,'');
    history.pushState(null, null, CatagoryURL);
    }
</script>


소스 2)

<script> Array.prototype.slice.call(document.querySelectorAll('a')) .filter(function(el) { return el.href.match(/\/[0-9]+\?category/gi); }) .forEach(function(el) { el.href = el.href.replace(/\?category.*/, ''); }); </script>
728x90
반응형

댓글