カスタムフィールドのorderbymeta_valueを使用したカスタムクエリ
8 回答
- 投票
-
- 2011-04-24
古い方法(WP 3.1.1でテスト済み)を使用して、 orderby パラメーターのメタキーを定義できます...
query_posts( array( 'post_type' => 'services', 'order' => 'ASC', 'meta_key' => 'some_key', 'orderby' => 'meta_value', //or 'meta_value_num' 'meta_query' => array( array('key' => 'order_in_archive', 'value' => 'some_value' ) ) ) );
You can define the meta key for orderby parameter using the old method (I tested on WP 3.1.1)...
query_posts( array( 'post_type' => 'services', 'order' => 'ASC', 'meta_key' => 'some_key', 'orderby' => 'meta_value', //or 'meta_value_num' 'meta_query' => array( array('key' => 'order_in_archive', 'value' => 'some_value' ) ) ) );
-
- 2016-11-15
この問題は一般に、WordPress 4.2 で名前付きクエリを使用することで解決されます.例:
$args = array( 'post_type' => 'services', 'orderby' => 'order_clause', 'meta_query' => array( 'order_clause' => array( 'key' => 'order_in_archive', 'value' => 'some_value', 'type' => 'NUMERIC' // unless the field is not a number )));
私にとっては、数値フィールドで並べ替えたいので、
'type' => 'NUMERIC'
.This issue in general is cleared up in WordPress 4.2 by using named queries. e.g.
$args = array( 'post_type' => 'services', 'orderby' => 'order_clause', 'meta_query' => array( 'order_clause' => array( 'key' => 'order_in_archive', 'value' => 'some_value', 'type' => 'NUMERIC' // unless the field is not a number )));
For me, I wanted to order by a numeric field and I had to use
'type' => 'NUMERIC'
inside the meta query.-
名前付きクエリで素晴らしい発見!Awesome find on the named queries!
- 1
- 2017-07-30
- Kaji
-
はい、名前付きクエリも私のために質問に答えました.Yep, named queries answered the question for me, too.
- 0
- 2017-07-31
- Dalton Rooney
-
優秀な.そのorder_clauseの「value」の重要性はわかりません.「order_in_archive」の最高値から最低値の順に並べられるため、必須ではないためです.Excellent. I'm not sure the significance of 'value' in that order_clause because it's not required as it will order it by the highest to lowest value of 'order_in_archive'.
- 1
- 2018-12-07
- Andrew Schultz
-
- 2011-04-24
この問題に対処するとき、WPコーデックスは実際には混乱しています.
orderbyを使用するために、実際にはmeta_queryparamは必要ありません.代わりに、meta_keyparamを使用します.これは、WP Codexによって非推奨になっていますが、ここで確立されています: Wordpress 3.1でmeta_queryでorderbyをどのように使用しますか?そのorderybyにはまだmeta_key.
そうあるべきです
query_posts( array( 'post_type' => 'services', 'order' => 'ASC', 'orderby' => 'meta_value', 'meta_key' => 'order_in_archive' ) )
The WP Codex is actually confusing when addressing this problem.
You do not actually need the meta_query param to use the orderby, instead it uses the meta_key param, which although by WP Codex is deprecated is has been established here: How do you use orderby with meta_query in Wordpress 3.1? that orderyby still needs the meta_key.
so it should be
query_posts( array( 'post_type' => 'services', 'order' => 'ASC', 'orderby' => 'meta_value', 'meta_key' => 'order_in_archive' ) )
-
はい、これはこのクエリを実行するための古い方法であり、この指定されたクエリで機能しているようです.とにかく、より複雑なクエリの場合は機能しません.これは対処中の既知の問題であることがわかりました.詳細については、tracチケット[#15031](http://core.trac.wordpress.org/ticket/15031)および[#17065](http://core.trac.wordpress.org/ticket/17065)Well, yes, this is the old method for doing this query and it appears to be working for this specified one. Anyway, for more complex queries, it won't work. I found this is a known issue that is being taken care of, details can be found in trac tickets [#15031](http://core.trac.wordpress.org/ticket/15031) and [#17065](http://core.trac.wordpress.org/ticket/17065)
- 3
- 2011-04-24
- Maor Barazany
-
- 2017-07-06
簡単です:
これが私のコードです:
query_posts(array( 'post_type' => 'directors', 'posts_per_page' => -1, 'order' => 'ASC', 'orderby' => 'director_weight', 'meta_key' => 'director_weight' ) );
主な詳細は次のとおりです.
meta_key
を含める、meta_key
が含まれていない限り、私のコードは注文されませんでした.それだけです:これは
directors
によるdirector_weight
画像のリストの完全なコードです:<?php query_posts(array( 'post_type' => 'directors', 'posts_per_page' => -1, 'order' => 'ASC', 'orderby' => 'director_weight', 'meta_key' => 'director_weight' ) ); while (have_posts()) : the_post(); ?> <li <?php echo get_field('director_weight') ?>> <img src="<?php echo get_field('director_imagen') ?>"> </li> <?php endwhile; wp_reset_query(); ?>
It´s easy:
Here is my code:
query_posts(array( 'post_type' => 'directors', 'posts_per_page' => -1, 'order' => 'ASC', 'orderby' => 'director_weight', 'meta_key' => 'director_weight' ) );
The main detail is: include
meta_key
, my code didn´t order unlessmeta_key
is included, and that's all:Here is the full code of a list of
directors
pictures order bydirector_weight
:<?php query_posts(array( 'post_type' => 'directors', 'posts_per_page' => -1, 'order' => 'ASC', 'orderby' => 'director_weight', 'meta_key' => 'director_weight' ) ); while (have_posts()) : the_post(); ?> <li <?php echo get_field('director_weight') ?>> <img src="<?php echo get_field('director_imagen') ?>"> </li> <?php endwhile; wp_reset_query(); ?>
-
- 2015-08-07
$meta_query = new WP_Meta_Query( $meta_query_args ); $meta_query_args = array( 'post_type' => 'services', 'order' => 'ASC', 'meta_key' => 'your_key', 'orderby' => 'meta_value', //or 'meta_value_num' 'meta_query' => array( array('key' => 'order_in_archive', 'value' => 'some_value' )));
Don't use query_posts.
$meta_query = new WP_Meta_Query( $meta_query_args ); $meta_query_args = array( 'post_type' => 'services', 'order' => 'ASC', 'meta_key' => 'your_key', 'orderby' => 'meta_value', //or 'meta_value_num' 'meta_query' => array( array('key' => 'order_in_archive', 'value' => 'some_value' )));
Use the WP_Meta_Query parameters
-
- 2012-12-28
これは非常にうまく機能することがわかりました.
<?php query_posts( array( 'posts_per_page' => '-1', 'post_type' => 'services', 'order' => 'DESC', 'meta_key' => '_order', 'orderby' => 'meta_value_num', //or 'meta_value_num' ) );
I found this to work quite well.
<?php query_posts( array( 'posts_per_page' => '-1', 'post_type' => 'services', 'order' => 'DESC', 'meta_key' => '_order', 'orderby' => 'meta_value_num', //or 'meta_value_num' ) );
-
問題は、新しい `meta_query`パラメータとそれを使用するための` orderby`の取得に関するものであり、古いがまだ機能している `meta_key`/`meta_value`パラメータに関するものではありません.また、 `query_posts`の使用を推奨しないようにしましょう.The question is about the new-ish `meta_query` parameter and getting an `orderby` to work with it, and not about the older but still functional `meta_key`/`meta_value` parameters. Also, let's not encourage the use of `query_posts`.
- 3
- 2012-12-28
- s_ha_dum
-
この回答には、-1を使用して文字列として渡す、query_postsを使用するなど、複数の悪い習慣が含まれています.削除する必要があります.This answer contains multiple bad practices: using -1, passing it as a string, using query_posts. It should be removed.
- 0
- 2019-03-01
- Ihor Vorotnov
-
- 2017-01-19
日付の降順で並べ替える必要のあるカスタムイベント日付のセットがありました.カスタムイベントの日付はwp_postmetaテーブルに保存されており、通常はpost_dateまたは変更された日付とは異なるため、これはうまくいきました.
$args = array( 'post_type' => 'events', // my post type - yours can be 'posts' 'post_status' => 'publish', // only get posts with this status 'orderby' => 'meta_value', // orderby the meta_value of the following meta_key 'meta_key' => 'my_custom_eventdate', // the custom meta_key name 'order'=> 'DESC' // sort descending ); $posts = new WP_Query($args);
次に、次のように$postsをループできます.
foreach($posts->posts as $p){ $post_id = $p->ID; // and so on ... // # example of how I retrieve my event date $event = get_post_meta($post_id, 'my_custom_eventdate', true); }
I had a set of custom event dates I needed to sort by date descending. Since my custom event date was stored in my wp_postmeta table, and was typically different to the post_date or modified dates, this worked for me:
$args = array( 'post_type' => 'events', // my post type - yours can be 'posts' 'post_status' => 'publish', // only get posts with this status 'orderby' => 'meta_value', // orderby the meta_value of the following meta_key 'meta_key' => 'my_custom_eventdate', // the custom meta_key name 'order'=> 'DESC' // sort descending ); $posts = new WP_Query($args);
You can then loop through $posts like so:
foreach($posts->posts as $p){ $post_id = $p->ID; // and so on ... // # example of how I retrieve my event date $event = get_post_meta($post_id, 'my_custom_eventdate', true); }
-
- 2019-03-17
これは私にとってはうまくいきます
$args = array( 'post_type' => 'services', 'order' => 'ASC', 'orderby' => 'order_clause', 'meta_query' => array( 'order_clause' => array( 'key' => 'order_in_archive' )));
order_clauseのキーを提供する必要があるだけです
This work for me,
$args = array( 'post_type' => 'services', 'order' => 'ASC', 'orderby' => 'order_clause', 'meta_query' => array( 'order_clause' => array( 'key' => 'order_in_archive' )));
Only needed to provide the key for the order_clause
ああ、ご存知のとおり、WP3.0の時点で、カスタムの高度なクエリのオプションがあります.これはすばらしいことです. この時点で、meta_key、meta_valueなどのカスタムフィールドの一部のクエリパラメータは、新しいmeta_queryパラメータでは非推奨になりました(こちらをご覧ください )
新しい構文で非常に単純なクエリを作成しようとしています.指定されたmeta_key(order_in_archive)を含む特定のpost_type(サービス)で投稿をクエリします.これは期待どおりに進んでいます. しかし、-meta_valueでクエリを並べ替えたいのですが、成功しませんでした.
これは私の質問です-
meta_value_numericとmeta_valueでもorderbyを試しましたが、いずれの場合も、結果は公開日で並べ替えられています(通常の投稿と同様). 誰もがこれをどのように行うことができるか知っていますか?
ありがとう