---
title: Filter post object sent automatically to IndexNow API
url: "https://www.seopress.org/support/hooks/filter-post-object-sent-automatically-to-indexnow-api/"
lang: en-US
updated: 2024-10-10
hook_name: seopress_instant_indexing_permalink
required_version: 8.3
---

# Filter post object sent automatically to IndexNow API

- **Hook name:** `seopress_instant_indexing_permalink`
- **Required version:** 8.3

```php
add_filter('seopress_instant_indexing_permalink', 'sp_instant_indexing_permalink', 10, 2);
function sp_instant_indexing_permalink($permalink, $post) {
	$cpt = get_post_type( $post ) ? get_post_type( $post ) : '';

	if ($cpt === 'test') {
		return false;
	}

	return $permalink;
}
```

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



