Skip to content

Instantly share code, notes, and snippets.

@vladimirlukyanov
Created July 31, 2015 06:38
Show Gist options
  • Save vladimirlukyanov/9f2302ccdd4c4afb66b3 to your computer and use it in GitHub Desktop.
Save vladimirlukyanov/9f2302ccdd4c4afb66b3 to your computer and use it in GitHub Desktop.
WordPress default loop
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
<?php
the_title();
the_content();
?>
<?php endwhile; ?>
<?php endif; ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment