我有一個配方網站和搜索選項。現在我有食譜名稱CAKE,當我搜索CAKES然後它沒有顯示結果。它可以用CAKE或CAK。我想要LIKE查詢的結果。請幫助我。WordPress搜索不能正常工作
這裏是我的自定義搜索ARGS代碼:
<?php $args = array('posts_per_page' => -1, 'post_type' => 'recipes', 's' => $_GET['s']);
$myposts = get_posts($args);
if (empty($myposts)) {
echo 'No results found in Recipe!';
} else { ?>
//show recipes
<?php wp_reset_postdata();
} ?>
哪個功能用。 –
如果配方是一個類別只是使用類別分類和通過蛋糕匹配,這將幫助您獲得結果。你所做的會嘗試匹配發布標題和搜索關鍵字,你認爲這應該給你的職位? –
我正在使用get_posts()函數 –