Skip to content

Instantly share code, notes, and snippets.

@SitesByYogi
Created July 9, 2023 03:20
Show Gist options
  • Save SitesByYogi/31b704ae567882487a89c66f1df79306 to your computer and use it in GitHub Desktop.
Save SitesByYogi/31b704ae567882487a89c66f1df79306 to your computer and use it in GitHub Desktop.
The famous WordPress loop
<?php
while (have_posts()) {
the_post(); ?>
<h2><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h2>
<?php the_content(); ?>
<hr>
<?php }
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment