1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Wordpressで元のクエリ配列を引数配列にする

Last updated at Posted at 2014-07-03

元のクエリ配列を引数配列に統合することもできます。
複数のカスタムフィールドを条件にするときに役に立ちます。


$search_plan_array=array('key'=>' プラン',
'value'=> $_REQUEST["works_search_plan"],
'compare'=>'IN'
);
$search_type_array=array('key'=>' 業種',
'value'=> $_REQUEST["works_search_type"],
'compare'=>'IN'
);
$search_condition_array['meta_query']=array($search_plan_array,$search_type_array);
global $wp_query;
$args = array_merge( $wp_query->query, $search_condition_array);
query_posts( $args );

1
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?