Perché ricevo un ciclo infinito con have_posts?
3 risposta
- voti
-
- 2011-11-20
Guarda questa risposta: ottieniiltipo dipostpersonalizzatopertag
Credo che useresti
$flagged_stores->the_post()
all'interno del ciclowhile
.Look at this answer: get custom post type by tag
I believe you'd use
$flagged_stores->the_post()
insidewhile
loop.-
+1 -ben individuato;dovrebbeeffettivamente leggere: ` have_posts ()): $flagged_stores->the_post ();?> `- @yuval:il cicloinfinitomostrava sempre lo stessotitolo?+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ì,perchénon cerchi unpostperpost senza [`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
-
Inoltrenonfare `echothe_title ()` è solo `the_title ()`,poiché si stampa da solo di default.Di solito usi `echo` confunzioni cheiniziano conget_,comein`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
prova a utilizzare
'posts_per_page'
invece di'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-
Ancora senzafortuna.Altreidee?Grazie!Still no luck. Any other ideas? Thanks!
- 0
- 2011-11-20
- yuval
-
- 2011-11-20
Non so se questo è ciò che ha causatoil cicloinfinito,mailtuo WP_Query è disattivato.
$flagged_stores = new WP_Query( array ( 'post_type' => 'store', 'orderby' => 'ID', 'meta_key' => 'flagged', 'posts_per_page' => 10 ) );
Ho aggiornato
'orderby'
e'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'
.
Hoil seguente codice,cheper qualchemotivo causa un cicloinfinito. Qualcunopuò spiegare cosa sta succedendoperfavore?
Grazie!