---
title: Filter meta robots nosnippet
url: "https://www.seopress.org/support/hooks/filter-meta-robots-nosnippet/"
lang: en-US
updated: 2021-09-29
hook_name: seopress_titles_nosnippet
required_version: 2.7.1
---

# Filter meta robots nosnippet

- **Hook name:** `seopress_titles_nosnippet`
- **Required version:** 2.7.1

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

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



