You need to find posts, the title and / or content of which contains the exact phrase consisting of two or more words. I tried this:
$args = array ( 'posts_per_page' => -1, 'post_type' => 'post', 's' => 'множество чудес', 'exact' => true ); $posts = get_posts($args); So does not find anything. Without the parameter, 'exact' finds, but at the same time, it does not find much needed (it finds the words 'set' and 'wonders' in different places of content, which is not good).