поиск где запрос исправляет окончания слов
// Поиск где запрос исправляет окончания слов function search_blog($search) { $posts = get_posts(array( 's' => $search, 'post_type' => 'post' )); $blogs = array(); foreach($posts as $post) { $blogs[] = array( 'title' => $post->post_title, 'content' => $post->post_content, 'url' => get_permalink($post->ID) ); } return $blogs; }