Created
January 31, 2024 12:37
-
-
Save andreiglingeanu/68f20cab856a530f2a3fea1af2266f0c to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
add_filter( | |
'rest_post_search_query', | |
function ($args) { | |
$args['post_type'] = array_diff( | |
$args['post_type'], | |
['ct_content_block'] | |
); | |
return $args; | |
} | |
); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment