Skip to content

Instantly share code, notes, and snippets.

@TruongTuyen
Last active April 21, 2017 14:42
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 TruongTuyen/dfaf9a71fcc64fdfaae947382cb2434a to your computer and use it in GitHub Desktop.
Save TruongTuyen/dfaf9a71fcc64fdfaae947382cb2434a to your computer and use it in GitHub Desktop.
<?php
/**
* Template Name: Full Width
*/
?>
<?php get_header(); ?>
<div class="wrap">
<?php do_action( 'wptq_before_content' ); ?>
<div id="primary" class="content-area">
<main id="main" class="site-main" role="main">
<?php
if ( have_posts() ) :
while ( have_posts() ) : the_post();
the_content();
endwhile;
endif;
?>
</main>
</div>
</div>
<?php get_footer(); ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment