Skip to content

Instantly share code, notes, and snippets.

@brendonexus
Created February 13, 2017 15:02
Show Gist options
  • Save brendonexus/623393eb1408ce69f506d295a49a89a0 to your computer and use it in GitHub Desktop.
Save brendonexus/623393eb1408ce69f506d295a49a89a0 to your computer and use it in GitHub Desktop.
Default Wordpress Loop
<?php
get_header();
if (have_posts()) :
while (have_posts()) :
the_post();
the_content();
endwhile;
endif;
get_sidebar();
get_footer();
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment