WP_Query搜索不起作用.....关键字' TATTOO'

时间:2015-09-22 13:38:40

标签: wordpress

此搜索无效....任何猜测?这是一段非常简单的代码。

用于显示与标题字段的关键字纹​​身相关的记录。它显示了所有产品。搜索未触发。

$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 );`

1 个答案:

答案 0 :(得分:0)

http://codex.wordpress.org/Class_Reference/WP_Query#Search_Parameter

尝试使用's'代替'搜索'

  ...
  's'  =>  '*tattoo*',
  ...