---
title: Filter noindex alert HTML from admin bar
url: "https://www.seopress.org/support/hooks/filter-noindex-alert-html-from-admin-bar/"
lang: en-US
updated: 2021-09-29
hook_name: seopress_adminbar_noindex
required_version: 4.1
---

# Filter noindex alert HTML from admin bar

- **Hook name:** `seopress_adminbar_noindex`
- **Required version:** 4.1

```php

add_filter('seopress_adminbar_noindex', 'sp_adminbar_noindex');
function sp_adminbar_noindex($html) {
	//my custom noindex alert
	//do your stuff here
	return $html;
}
```

Source: [https://gist.github.com/wp-seopress/15dc14ee62e81962532d1c9049aad8cd](https://gist.github.com/wp-seopress/15dc14ee62e81962532d1c9049aad8cd)



