Trusted WordPress tutorials, when you need them most.
Beginner’s Guide to WordPress
WPB Cup
25 Million+
Websites using our plugins
16+
Years of WordPress experience
3000+
WordPress tutorials
by experts

Vad är: Slinga

”The loop” brukar också anropas ”The WordPress loop”, eller helt enkelt bara ”loop”. Det är den viktigaste delen av PHP-koden som visar posterna på en WordPress website.

WordPress Loop är utan tvekan en av de viktigaste aspekterna av WordPress-koden och är på ett eller annat sätt core i de flesta sökningar.

What Is a Loop in WordPress?

Infografik: Förstå WordPress-loopen

Loopen används i WordPress themes för att visa en lista med posts på en page.

Temautvecklare kan formatera utdata genom att använda template-taggar för att customize hur varje post inuti loopen visas. Flera template-taggar fungerar bara inuti WordPress-loopen och används för att formatera, ordna och publicera postdata.

Vi har skapat följande infografik för att dela upp WordPress Loop för nybörjare.

Infographic - Understanding the WordPress Loop

Exempel på kod: En enkel WordPress-loop

Du kanske gillar att se ett exempel.

Här är lite PHP-kod som används för att bilda en enkel WordPress-slinga:

<?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;
?>

Vi hoppas att den här artikeln hjälpte dig att lära dig mer om WordPress-loopen. Du kanske också vill se vår lista med ytterligare Läsa under för relaterade artiklar om användbara WordPress-tips, tricks och idéer.

If you liked this article, then please subscribe to our YouTube Channel for WordPress video tutorials. You can also find us on Twitter and Facebook.

Ytterligare läsning

Avatar

Editorial Staff at WPBeginner is a team of WordPress experts led by Syed Balkhi with over 16 years of experience in WordPress, Web Hosting, eCommerce, SEO, and Marketing. Started in 2009, WPBeginner is now the largest free WordPress resource site in the industry and is often referred to as the Wikipedia for WordPress.

Den ultimata WordPress-verktygslådan

Få GRATIS tillgång till vår verktygslåda - en samling WordPress-relaterade produkter och resurser som varje professionell användare bör ha!