Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save wp-seopress/b65b8f75792fffb38ae69eebcb1a4eab to your computer and use it in GitHub Desktop.
Save wp-seopress/b65b8f75792fffb38ae69eebcb1a4eab to your computer and use it in GitHub Desktop.
Filter post object sent automatically to IndexNow API
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;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment