Skip to content

Instantly share code, notes, and snippets.

@lichtmetzger
Last active August 9, 2022 12:59
Show Gist options
  • Save lichtmetzger/2d564447fe765c633d607649a94b3385 to your computer and use it in GitHub Desktop.
Save lichtmetzger/2d564447fe765c633d607649a94b3385 to your computer and use it in GitHub Desktop.
Override meta query
<?php
// META QUERY
function searchExcludeOldMatches( $query ) {
if (!is_admin() && $query->is_search) {
$query->set('meta_query', array(
array(
'key' => 'ctl_visibility',
'value' => 'true',
'compare' => '=',
'type_key' => 'CHAR'
),
));
return $query;
} else {
return $query;
}
}
add_filter('pre_get_posts','searchExcludeOldMatches');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment