I'm trying to search in title and content of the different custom fields.
$args = array('exclude_from_search' => array( 'order-request'),
"post_type" => array('post','document','page','event','product'),
's' => get_search_query()
);
$context['posts'] = Timber::get_posts($args);
But when I search something like "Example ' Assistants"
even when that is the title of a post if I search "Example" the post is there.
How can I include some special characters ?