我正在搜索与科学相关的术语。下面是我需要查询执行的操作。如果有人搜索“bio”,他们不应该得到“biology”的搜索结果,而应该得到“bio science”的搜索结果。我需要查询返回整个单词的结果。欢迎提出任何建议。谢谢
这是我的代码:
$queryArgs = array(
\'post_type\' => \'faculty\',
\'posts_per_page\' => -1,
\'meta_query\' => array(
\'relation\' => \'OR\',
array(
\'key\' => \'proposed_keywords\', // name of custom field
\'value\' => $keyword, // matches exaclty "123", not just 123. This prevents a match for "1234"
\'compare\' => \'LIKE\'
)
)
);