Skip to content

Instantly share code, notes, and snippets.

@thierrypigot
Created June 27, 2023 15:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save thierrypigot/f652580565f0bde59319d178ecb8fc07 to your computer and use it in GitHub Desktop.
Save thierrypigot/f652580565f0bde59319d178ecb8fc07 to your computer and use it in GitHub Desktop.
WordPress loop
<?php
if ( have_posts() ) :
while ( have_posts() ) : the_post();
// Display post content
endwhile;
endif;
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment