Skip to content

Instantly share code, notes, and snippets.

@stephywells
Created August 10, 2015 17:14
Show Gist options
  • Save stephywells/e8219e316017a5e94f67 to your computer and use it in GitHub Desktop.
Save stephywells/e8219e316017a5e94f67 to your computer and use it in GitHub Desktop.
Blank WordPress template
<?php
/*
Template Name: Blank template
*/
wp_head();
if (have_posts()) : while (have_posts()) : the_post();
the_content();
endwhile; endif;
wp_footer();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment