4
6

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.

カスタムフィールドの範囲指定での絞込

Posted at

query_postやget_postを使って、絞り込む時に、
カスタムフィールドの値を絞り込むときの書き方

#####大きい小さい
query_posts( array( 'meta_query' => array( array( 'key'=>'price', 'value'=>'500', 'compare'=>'>', 'type'=>'NUMERIC' ) ) ) );
#####の間
query_posts( array( 'meta_query' => array( array( 'key'=>'wakeup__at', 'value'=>array( '05:00:00', '07:00:00' ), 'compare'=>'BETWEEN', 'type'=>'TIME' ) ) ) );
betweenが使えるのは便利。

4
6
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
4
6

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?