Disable admin search for the Elementor library in Relevanssi

Disable admin search for the Elementor library in Relevanssi on child sites.

Snippet Type

Execute on Child Sites

Snippet

add_filter( 'relevanssi_search_ok', function( $ok, $query ) {
	if ( 'elementor_library' === $query->query_vars['post_type'] ) {
		$ok = false;
	}
	return $ok;
}, 10, 2 );
1 Like

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.