---
title: Filtrar anuncios de Google
url: "https://www.seopress.org/es/soporte/hooks/filtrar-anuncios-de-google/"
lang: es
updated: 2021-09-29
hook_name: seopress_gtag_ads
required_version: 3.6
---

# Filtrar anuncios de Google

- **Hook name:** `seopress_gtag_ads`
- **Required version:** 3.6

```php
add_filter('seopress_gtag_ads', 'sp_gtag_ads');
function sp_gtag_ads($html) {
	//example: 'gtag('config', 'AW-XXXXXXX');'
	//do your stuff
	return $html;
}
```

Source: [https://gist.github.com/wp-seopress/2321475b0cd3260162fb04386e6fa55b](https://gist.github.com/wp-seopress/2321475b0cd3260162fb04386e6fa55b)



