query_posts y solo muestra resultados si un campo personalizado no está vacío
2 respuestas
- votos
-
- 2011-02-24
Pruebeeste código:
$args = array( 'posts_per_page' => '10', 'post_type' => 'programmes', 'meta_key' => 'popularityfig', 'meta_value' => '', 'meta_compare' => '!=', 'order' => 'DESC' );
Hay 2 argumentos que quizás deseeteneren cuentaen el código:
meta_value
ymeta_compare
.El uso demeta_compare
conel operador!=
excluirá laspublicaciones conmetavalor vacío.Try this code:
$args = array( 'posts_per_page' => '10', 'post_type' => 'programmes', 'meta_key' => 'popularityfig', 'meta_value' => '', 'meta_compare' => '!=', 'order' => 'DESC' );
There're 2 arguments you might want to note in the code:
meta_value
andmeta_compare
. Usingmeta_compare
with operator!=
will exclude posts with empty meta value.-
Gracias,¿puedo veresoen el códice ahora?¡¡Por quénopude verlo antes,noestoy seguro !!Gracias denuevo.Thanks, I can see that on codex now?? Why I couldn't see it before I'm not sure!! Thanks again.
- 0
- 2011-02-24
- erichmond
-
Por alguna razón,esto siguiótirando detodasmispublicaciones sinimportar su valor.En cambio,usé 'meta_value'=> array ('') y 'meta_compare'=> 'NOT IN' yesofuncionó Creémi meta valor conel complemento Advanced Custom Fields (ACF) yera solo un campo detexto.For whatever reason, this kept pulling all of my posts regardless of value. Instead, I used 'meta_value' => array('') and 'meta_compare' => 'NOT IN' and that worked.I created my meta value with the Advanced Custom Fields (ACF) plugin and it was just a text field.
- 0
- 2018-01-10
- Tessa
-
- 2011-03-02
Noestá claro si la respuesta anterior realmentefuncionóparati @erichmond,pero definitivamentenofuncionóparamí.Aunqueencontré una solución.Ver: ¿Cómopuedomostrarpublicaciones solo simeta_valuenoestá vacío
It's not clear if the answer above actually worked for you @erichmond, but it definitely did not for me. Found a solution though. See: How can I show posts only if meta_value is not empty
¿Cómo
query_posts
y solomuestro resultados si un campopersonalizadonoestá vacío otiene un valor?¿Quieroincluir una URLen un campopersonalizado y solomostrarestaspáginas si hay una URL?
código actual,peronopuedoentenderel resto: