---
title: Filter meta google noimageindex
url: "https://www.seopress.org/support/hooks/filter-meta-google-noimageindex/"
lang: en-US
updated: 2022-11-29
hook_name: seopress_titles_noimageindex
required_version: 2.7.1, 6.2
---

# Filter meta google noimageindex

- **Hook name:** `seopress_titles_noimageindex`
- **Required version:** 2.7.1, 6.2

```php
function sp_titles_noimageindex($html) {
	//you can add here all your conditions as if is_page(), is_category() etc.. 
	$html = 'noimageindex';
	return $html;
}
add_filter('seopress_titles_noimageindex', 'sp_titles_noimageindex');
```

Source: [https://gist.github.com/wp-seopress/5c99e9838f94d0861085174aaf6316f0](https://gist.github.com/wp-seopress/5c99e9838f94d0861085174aaf6316f0)



