---
title: Filter custom post type in HTML sitemap
url: "https://www.seopress.org/support/hooks/filter-custom-post-type-in-html-sitemap/"
lang: en-US
updated: 2021-09-29
hook_name: seopress_sitemaps_html_cpt
required_version: 3.6
---

# Filter custom post type in HTML sitemap

- **Hook name:** `seopress_sitemaps_html_cpt`
- **Required version:** 3.6

```php
add_filter('seopress_sitemaps_html_cpt', 'sp_sitemaps_html_cpt');
function sp_sitemaps_html_cpt($html) {
	//example:
	// Array
	// (
	// 	[page] => Array
	// 		(
	// 			[include] => 1
	// 		)
	// 	[post] => Array
	// 		(
	// 			[include] => 1
	// 		)
	// 	[testimonials] => Array
	// 		(
	// 			[include] => 1
	// 		)
	// 	[product] => Array
	// 		(
	// 			[include] => 1
	// 		)
	// )
	unset($html['testimonials']);//remove testimonials custom post type from HTML sitemap
	return $html;
}
```

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



