---
title: Force the display of the custom post type archive page even if it does not exist in breadcrumbs
url: "https://www.seopress.org/support/hooks/force-the-display-of-the-custom-post-type-archive-page-even-if-it-does-not-exist-in-breadcrumbs/"
lang: en-US
updated: 2021-09-30
hook_name: seopress_breadcrumbs_force_archive_name
required_version: 4.5
---

# Force the display of the custom post type archive page even if it does not exist in breadcrumbs

- **Hook name:** `seopress_breadcrumbs_force_archive_name`
- **Required version:** 4.5

```php
add_filter('seopress_breadcrumbs_force_archive_name', '__return_true');

//has_archive must be set to TRUE in the register post type function
```

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



