Loop – Buclă
Loop sau Buclă WordPress sau pur și simplu buclă, este un cod PHP care afișează postările WordPress. Bucla este utilizată în temele WordPress pentru a afișa o listă de postări într-o pagină web.
În interiorul buclei există câteva funcții care sunt rulate în mod implicit pentru a afișa postările. Dezvoltatorii de teme pot formata ieșirea utilizând etichete șablon pentru a personaliza modul în care este afișată fiecare postare din buclă. Există mai multe etichete șablon care funcționează numai în bucla WordPress și pot fi utilizate pentru formatarea, aranjarea și publicarea datelor de postare. Bucla WordPress este, fără îndoială, unul dintre cele mai importante aspecte ale codului WordPress și se află la baza majorității interogărilor într-un fel sau altul.
Un exemplu de utilizare a unui loop ( buclă ) WordPress simplu:
<?php // checks if there are any posts that match the query if (have_posts()) : // If there are posts matching the query then start the loop while ( have_posts() ) : the_post(); // the code between the while loop will be repeated for each post ?> <h2 id="post-<?php the_ID(); ?>"><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><?php the_title(); ?></a></h2> <p class="date-author">Posted: <?php the_date(); ?> by <?php the_author(); ?></p> <?php the_content(); ?> <p class="postmetadata">Filed in: <?php the_category(); ?> | Tagged: <?php the_tags(); ?> | <a href="<?php comments_link(); ?>" title="Leave a comment">Comments</a></p> <?php // Stop the loop when all posts are displayed endwhile; // If no posts were found else : ?> <p>Sorry no posts matched your criteria.</p> <?php endif; ?>