Skip to content

Instantly share code, notes, and snippets.

@Sstobo
Created November 9, 2017 17:53
Show Gist options
  • Save Sstobo/9a7577ad12fe5fe40346752fe6a22510 to your computer and use it in GitHub Desktop.
Save Sstobo/9a7577ad12fe5fe40346752fe6a22510 to your computer and use it in GitHub Desktop.
[custom template page FOR ABOUT PAGE] #wp #setup
<?php
/**
* Template Name: Full-width
*/
get_header(); ?>
<div id="primary" class="content-area">
<?php while ( have_posts() ) : the_post(); ?>
<?php get_template_part( 'content', 'page' ); ?>
<?php endwhile; // End of the loop. ?>
</div><!-- #primary -->
<?php get_footer(); ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment