¿Por qué obtengo un bucle infinito con have_posts?
3 respuestas
- votos
-
- 2011-11-20
Miraesta respuesta: obténeltipo depublicaciónpersonalizadaporetiqueta
Creo que usarías
$flagged_stores->the_post()
dentro dewhile
loop.Look at this answer: get custom post type by tag
I believe you'd use
$flagged_stores->the_post()
insidewhile
loop.-
+1 -bien manchado;de hecho debería leer: ` have_posts ()): $flagged_stores->the_post ();?> `- @yuval: ¿elbucle sinfin siempremostrabaelmismotítulo?+1 - well spotted; it should indeed read: `have_posts()): $flagged_stores->the_post(); ?>` - @yuval: did the endless loop always show the same title?
- 0
- 2011-11-20
- Michael
-
@Michael sí,porquenobuscaspublicaciónporpublicación sin [`the_post ()`] (http://codex.wordpress.org/Function_Reference/the_post)@Michael yes, because you don't seek post by post without [`the_post()`](http://codex.wordpress.org/Function_Reference/the_post)
- 1
- 2011-11-21
- brownian
-
Tampoco haga `echothe_title ()`es solo `the_title ()`,ya que seimprime solopor defecto.Normalmente usas `echo` confunciones que comienzan conget_,comoen`echoget_the_title () `Also don't do `echo the_title()` it's just `the_title()`, as it prints itself by default. Usually you use `echo` with functions starting with get_, like in `echo get_the_title()`
- 0
- 2015-08-28
- aesede
-
- 2011-11-20
intente utilizar
'posts_per_page'
en lugar de'limit'
- http://codex.wordpress.org/Class_Reference/WP_Query#Parameterstry and use
'posts_per_page'
instead of'limit'
- http://codex.wordpress.org/Class_Reference/WP_Query#Parameters-
Sigo sin suerte.¿Alguna otraidea?¡Gracias!Still no luck. Any other ideas? Thanks!
- 0
- 2011-11-20
- yuval
-
- 2011-11-20
No sé siestoes lo que causóelbucleinfinito,pero su WP_Queryestá apagado.
$flagged_stores = new WP_Query( array ( 'post_type' => 'store', 'orderby' => 'ID', 'meta_key' => 'flagged', 'posts_per_page' => 10 ) );
Actualicé
'orderby'
y'posts_per_page'
.I do not know if this is what caused the infinite loop, but your WP_Query is off.
$flagged_stores = new WP_Query( array ( 'post_type' => 'store', 'orderby' => 'ID', 'meta_key' => 'flagged', 'posts_per_page' => 10 ) );
I updated
'orderby'
and'posts_per_page'
.
Tengoel siguiente código,queprovoca unbucleinfinitopor alguna razón. ¿Alguienpuedeexplicar quéestápasando,porfavor?
¡Gracias!