---
title: Filter list of taxonomies from xml sitemap options
url: "https://www.seopress.org/support/hooks/filter-list-of-taxonomies-from-xml-sitemap-options/"
lang: en-US
updated: 2022-06-11
hook_name: seopress_sitemaps_tax
required_version: 5.8
---

# Filter list of taxonomies from xml sitemap options

- **Hook name:** `seopress_sitemaps_tax`
- **Required version:** 5.8

```php
function sp_sitemaps_tax($taxonomies) {
	//remove a custom taxonomy
	unset($taxonomies['my_custom_taxonomy']);
	return $taxonomies;
}
add_filter('seopress_sitemaps_tax', 'sp_sitemaps_tax');
```

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



