---
title: Delete the custom post type archive from a single view for the breadcrumb
url: "https://www.seopress.org/support/hooks/delete-the-custom-post-type-archive-from-a-single-view-for-the-breadcrumb/"
lang: en-US
updated: 2023-07-17
hook_name: seopress_pro_breadcrumbs_remove_cpt
required_version: 3.8.8
---

# Delete the custom post type archive from a single view for the breadcrumb

- **Hook name:** `seopress_pro_breadcrumbs_remove_cpt`
- **Required version:** 3.8.8

```php
add_filter('seopress_pro_breadcrumbs_remove_cpt','sp_pro_breadcrumbs_remove_cpt', 10, 2);
function sp_pro_breadcrumbs_remove_cpt($crumbs, $cpt) {
	if ($cpt->name =='testimonials') {
		return false;
	}
	return $crumbs;
}
```

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



