Created
November 9, 2017 17:53
-
-
Save Sstobo/9a7577ad12fe5fe40346752fe6a22510 to your computer and use it in GitHub Desktop.
[custom template page FOR ABOUT PAGE] #wp #setup
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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