How to.

티스토리 특정 게시글 광고 제거하는 법

임채성 2024. 3. 14. 17:36

다음 css 코드를 광고 제거하고자 하는 게시글의 html 수정을 통해 삽입하면 됩니다.
참고로 html 재수정을 하더라도 <script> 태그는 볼 수 없으니 본 글을 북마크 해두시는 것을 추천드립니다.

코드

<style> .revenue_unit_wrap, .adsbygoogle { display: none !important; } </style>

 

원리

  1. revenue_unit_wrap, adsbygoogle 클래스가 달려있는 광고를 display: none을 통해 제거합니다.
  2. adsbygoogle 클래스의 경우 인라인 스타일을 이용하여 display 옵션을 주었기 때문에 css 최상위 우선순위 important을 주었습니다.

 

적용 예시