April 25, 2026

Install or Remove Google AdSense Auto Ads, Auto Optimize on your website. / 에드센스 설치 혹은 제거하기...

 =Google AdSense Auto Ads, Auto Optimize 적용 또는 제거하기

구글 애드센스의 Ad 메뉴에는 관리하는 사이트에 적용되는 광고를 어떻게 나타나게 할 것인지를 관리할 수 있는 옵션들이 있다. 여기에서 자동광고 및 자동 최적화의 적용여부를 선택할 수 있다.

구글의 '자동 광고'는 구글의 애드센스가 (스스로, 자동으로) 특정 사이트 및 특정 웹페이지에서 HTML 문서를 감지하여, 광고가 들어갈 공간(?)이 있는지를 판단(?)하여, 공간이 있다면... '자동으로 광고를 삽입'하는 것이다.

한데, 이 기능은 종종 웹페이지의 디자인 아웃라인을 깨뜨린다. 하여, 이 자동광고 삽입을 특정 구역에서 나타나지 않도록 하는 방법은 아래와 같다.

The google-anno-skip CSS class is used in AdSense to prevent intrusive ad intent formats—specifically links, anchors, and chips—from appearing in designated areas of a webpage, such as headers, menus, or crucial content blocks. It acts as a suppression tag to protect user experience.

How to Use google-anno-skip

You can apply this class to any HTML element to stop AdSense from placing auto-ads in that section.

Exclude Specific Sections: Add the class to a container element (e.g., <div>, <section>, <nav>).

html

특정 영역(ex: div, secion, nav 등)에서 자동광고 삽입을 원하지 않을 경우... 아래와 같은 구글 클래스를 해당 요소(element)에 넣으면 된다.

<div class="header-menu google-anno-skip">

<!-- Ad intent links will not appear here -->

<ul>...</ul></div>

만약 전체 Body 영역에서 나타나지 않게 하려면... class="google-anno-skip" 클래스를 body 요소(element)에 넣어주면 된다.

Exclude Entire Pages: Add the class to the <body> tag.

html

<body class="google-anno-skip">

<!-- Ads are disabled for this entire page -->

</body>

=Key Use Cases

Preventing Ad Clutter: As noted in Reddit discussions, ad intents can be overwhelming; using the class helps reduce clutter.

Protecting Navigation: It is highly recommended for navigation bars, footers, and sidebars to prevent accidental clicks.

Improving User Experience: It keeps critical text, such as legal or premium content, free from distracting links.

For more details on implementing this, you can refer to the Google AdSense Help article on ad intent formats.

No comments:

Post a Comment