Created
June 14, 2017 15:11
-
-
Save JMWebDevelopment/a0e27098d4ed82b5ca4a81dafa16e20f to your computer and use it in GitHub Desktop.
For More Info, go to: https://sportsbenchwp.com
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: Player | |
*/ | |
get_header(); ?> | |
<div id="primary" class="content-area"> | |
<main id="main" class="site-main" role="main"> | |
<?php | |
// Start the loop. | |
while ( have_posts() ) : the_post(); ?> | |
<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>> | |
<div class="entry-content"> | |
</div> | |
</article> | |
<?php endwhile; | |
?> | |
</main><!-- .site-main --> | |
<?php get_sidebar( 'content-bottom' ); ?> | |
</div><!-- .content-area --> | |
<?php get_sidebar(); ?> | |
<?php get_footer(); ?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment