---
title: Filtrer les types de publication du plan de site HTML
url: "https://www.seopress.org/fr/support/hooks/filtrer-les-types-de-publication-du-plan-de-site-html/"
lang: fr-FR
updated: 2019-07-26
hook_name: seopress_sitemaps_html_cpt
required_version: 3.6
---

# Filtrer les types de publication du plan de site HTML

- **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)



