You should put this part of code
add_filter('pre_get_posts', 'filter_search');
into the layout template. For example, to index.php.
if (is_search()) :
add_filter('pre_get_posts','SearchFilter');
get_posts();
else :
/* the usual way of retrieving posts */