Skip to content

Instantly share code, notes, and snippets.

@JMWebDevelopment
Created June 14, 2017 15:11
Show Gist options
  • Save JMWebDevelopment/a0e27098d4ed82b5ca4a81dafa16e20f to your computer and use it in GitHub Desktop.
Save JMWebDevelopment/a0e27098d4ed82b5ca4a81dafa16e20f to your computer and use it in GitHub Desktop.
For More Info, go to: https://sportsbenchwp.com
<?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