---
title: Filtre pour activer / désactiver la date du post par type de publication dans le plan de site HTML
url: "https://www.seopress.org/fr/support/hooks/filtre-pour-activer-desactiver-la-date-du-post-par-type-de-publication-dans-le-plan-de-site-html/"
lang: fr-FR
updated: 2019-12-04
hook_name: seopress_sitemaps_html_post_date
required_version: 3.7.7
---

# Filtre pour activer / désactiver la date du post par type de publication dans le plan de site HTML

- **Hook name:** `seopress_sitemaps_html_post_date`
- **Required version:** 3.7.7

```php
add_action('seopress_sitemaps_html_post_date', 'sp_sitemaps_html_post_date', 10, 2);
function sp_sitemaps_html_post_date($date, $cpt_key) {
	if ($cpt_key ==='post') {//remove post date for post type "post"
		return false;
	} else {
		return true;
	}
}
```

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



