---
title: Filter Google Ads
url: "https://www.seopress.org/support/hooks/filter-google-ads/"
lang: en-US
updated: 2021-09-29
hook_name: seopress_gtag_ads
required_version: 3.6
---

# Filter Google Ads

- **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)



