4
Dlaczego powinienem umieścić if (have_posts ()), czy while (have_posts ()) to za mało?
Mam pytanie dotyczące „pętli”. <?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?> <?php endwhile; else: ?> <p><?php _e('Sorry, no posts matched your criteria.'); ?></p> <?php endif; ?> Kod pobrany ze strony Loop WordPress Codex . Dlaczego powinienem umieścić ifczęść? Wygląda na to, że jeśli jest …
22
loop