EDIT - WordPress的当前版本支持相关性,因此此答案不再准确。
没有排名或相关性的概念,只是对帖子标题和内容的简单查询:
($wpdb->posts.post_title LIKE \'{$n}{$term}{$n}\') OR ($wpdb->posts.post_content LIKE \'{$n}{$term}{$n}\')
您可以使用
posts_search
筛选以修改搜索查询或将其完全替换为您自己的查询。从…起
/wp-includes/query.php
:
// Allow plugins to contextually add/remove/modify the search section of the database query
$search = apply_filters_ref_array(\'posts_search\', array( $search, &$this ) );
另请参见
available query filters on the WP_Query
Codex page.