Consulta personalizada com Orderby Meta_Valor de campo personalizado
8 respostas
- votos
-
- 2011-04-24
Vocêpode definir atecla METApara Parâmetro Usando ométodo antigo (eutesteino 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' ) ) ) );
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
Esteproblemaem geral éesclarecidono WordPress 4.2 usando consultasnomeadas.e.
$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 )));
Paramim,eu queriaencomendarpor um camponuméricoe tive que usar
'type' => 'NUMERIC'
dentro dameta consulta.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 Encontrenas consultasnomeadas!Awesome find on the named queries!
- 1
- 2017-07-30
- Kaji
-
Sim,as consultasnomeadas responderam aperguntaparamim também.Yep, named queries answered the question for me, too.
- 0
- 2017-07-31
- Dalton Rooney
-
Excelente.Nãotenho certeza de que o significado do 'valor'nessa ordem_clause,porquenão énecessário,pois ordenará omais altopara omenor valor de '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
O códice WP é realmente confuso aoendereçaresteproblema.
Vocênãoprecisa do META_Query Parampara usar a Oração,em vez disso,usa o Meta_Key Param,que,emborapelo WHP Codex seja reprovado éestabelecido aqui: Como você usa a Oração com Meta_Queryno WordPress 3.1? Essa ORDERYBY aindaprecisa dometa_key.
Então deve ser
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' ) )
-
Bem,sim,este é ométodo antigoparafazeressa consultae pareceestarfuncionandoparaesteespecificado.De qualquerforma,para consultasmais complexas,nãofuncionará.Eu achei queeste é umproblema conhecido queestá sendo cuidado,os detalhespodem serencontradosem ticketstrac [# 15031] (http://core.trac.wordpress.org/ticket/15031)e [# 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
Éfácil:
Aquiestá omeu código:
Query_Posts (Array ( 'post_type'=> 'diretores', 'posts_per_page'=> -1, 'ordem'=> 'ASC', 'Orderby'=> 'Director_weight', 'meta_key'=> 'Director_weight' ));
O detalheprincipal é:incluir
meta_key
,meu códigonãopediu amenos quemeta_key
estejaincluído,e isso étudo:Aquiestá o código completo de uma lista de diretores
diretor_weight
:& lt;?php query_posts (array ( 'post_type'=> 'diretores', 'posts_per_page'=> -1, 'ordem'=> 'ASC', 'Orderby'=> 'Director_weight', 'meta_key'=> 'Director_weight' )); enquanto (tem_posts ()):the_post (); ? > & lt; li & lt;?phpechoget_field ('Director_weight')? > > & lt;img src="& lt;?phpechoget_field ('director_imagen')? >" > & lt;/li > & lt;?php Endwile; 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
Não 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 o wp_meta_query Parameters
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
Eu acheiissofuncionarmuitobem.
<?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' ) );
-
A questão é sobre oparâmetro New-ish `meta_query`e recebendo uma 'OrdenarBY'paratrabalhar comele,e não sobre osparâmetrosmais antigos,mas aindafuncionais demeta_key`/`meta_value`.Além disso,não vamosencorajar o uso de "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
-
Esta resposta contém váriaspráticas ruins: Usando -1,passando-o como uma string,usando a Query_Posts.Deve ser removido.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
Eutinha um conjunto de datas deeventospersonalizadas queeuprecisava classificarpor data descendente.Como aminha data deeventopersonalizadafoi armazenadanaminhatabela WP_PostMeta,e normalmenteera diferente das dataspost_date oumodificadas,issofuncionouparamim:
$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);
Vocêpodeentão circular através de $postagens como assim:
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
Estetrabalhoparamim,
$args = array( 'post_type' => 'services', 'order' => 'ASC', 'orderby' => 'order_clause', 'meta_query' => array( 'order_clause' => array( 'key' => 'order_in_archive' )));
sónecessárioparafornecer a chavepara opedido_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
AA Você sabe,apartir do WP3.0 Existem opçõespara consultas avançadaspersonalizadas,o que é ótimo. Apartir disso,algunsparâmetros de consulta de campospersonalizados como Meta_Key,Meta_Valueforam reprovadospara onovoparâmetro Meta_Query ( ver aqui )
Eutentoter uma consultabastante simples com anova sintaxe,posts de consultapor um determinadopost_type (serviços) que contém ummeta_keyespecificado (Order_in_Archive) -issoestáindobem comoesperado. Mas -eu queropedir a consultapelo Meta_Value,e sem sucesso.
Esta é aminha consulta -
Eutentei ordenarpormeta_value_numerice meta_value,masem qualquer caso,os resultadosestão sendoencomendadospela data depublicação (comoposts regulares). Alguém sabe comoissopode serfeito?
obrigado