2015-09-22 39 views
0

此搜索不工作....任何猜測?這是一段非常簡單的代碼。WP_Query搜索不工作.....對於關鍵字'TATTOO'

用於顯示與關鍵字紋身相關的記錄。它顯示所有產品。搜索沒有被觸發。

$args = array(


         'posts_per_page' => $per_page, 
         'offset'  => $paged, 
         'post_type' => 'product', 
         'meta_key' => $orderby, 
         'orderby'  => $num_orderby, 
         'order'  => $order, 
         'search' => '*tattoo*', 
         'search_columns' => array('post_title') 
       );  

        $new_query = new WP_Query($args);` 

回答