mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-05-04 12:22:24 +08:00
6 lines
171 B
Text
6 lines
171 B
Text
add_filter( 'relevanssi_search_ok', function( $ok, $query ) {
|
|
if ( 'elementor_library' === $query->query_vars['post_type'] ) {
|
|
$ok = false;
|
|
}
|
|
return $ok;
|
|
}, 10, 2 );
|