Skip to content

Instantly share code, notes, and snippets.

@sachyya
Created February 7, 2024 08:11
Show Gist options
  • Save sachyya/fdaac66144cfdd53c5e7dfe22074626c to your computer and use it in GitHub Desktop.
Save sachyya/fdaac66144cfdd53c5e7dfe22074626c to your computer and use it in GitHub Desktop.
Hide post with Thank you term
<?php
function custom_slug_skip_post( $skip, $post ) {
if( $post->post_type == 'resource' ) {
if (has_term('Thank You', 'resource-category', $post ) || has_term('Thank You', 'resource-tag', $post ) ) {
$skip = true;
}
}
return $skip;
}
add_filter( 'cm_typesense_bulk_import_skip_post', 'custom_slug_skip_post', 10, 2 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment