此搜索无效....任何猜测?这是一段非常简单的代码。
用于显示与标题字段的关键字纹身相关的记录。它显示了所有产品。搜索未触发。
$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 );`
答案 0 :(得分:0)
http://codex.wordpress.org/Class_Reference/WP_Query#Search_Parameter
尝试使用's'代替'搜索'
...
's' => '*tattoo*',
...