구글 애드센스 특정 페이지에서 작동 안하게 수정
본문
<script>
const blockedPaths = ['/bbs/profile.php', '/bbs/follow.php', '/bbs/memo.php']; // 구글 애드센스 차단할 페이지 경로
if (blockedPaths.includes(window.location.pathname) && window.location.pathname !== '/index.php') { //이 코드 자체가 작동을 멈출 경로
const adsenseScripts = document.querySelectorAll('script[src*="pagead2.googlesyndication.com"]');
adsenseScripts.forEach(script => script.parentNode.removeChild(script));
}
</script>
*사용 결과 이 코드가 작동을 멈츌 경로를 설정해두지 않으면, 이 코드가 있는 페이지의 최신글 출력 부분이 프로필 url, 프로필 이미지url과 게시글 연결 url이 http로 바뀌는 오류 발생함
좋아요0
이 글을 좋아요하셨습니다
등록된 댓글이 없습니다.