---
title: Filter the depth limit for hierarchical contents in the HTML sitemap
url: "https://www.seopress.org/support/hooks/filter-the-depth-limit-for-hierarchical-contents-in-the-html-sitemap/"
lang: en-US
updated: 2021-09-30
hook_name: seopress_sitemaps_html_pages_depth_query
required_version: 3.6.2
---

# Filter the depth limit for hierarchical contents in the HTML sitemap

- **Hook name:** `seopress_sitemaps_html_pages_depth_query`
- **Required version:** 3.6.2

```php
function sp_sitemaps_html_pages_depth_query($depth) {
	$depth = 2; //Depth limit (int), default: 0 means all levels
	return $depth;
}
add_filter('seopress_sitemaps_html_pages_depth_query', 'sp_sitemaps_html_pages_depth_query');
```

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



