Skip to content

Instantly share code, notes, and snippets.

@jepser
Created July 1, 2014 03:05
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 jepser/864e3a5bd3847ee5397e to your computer and use it in GitHub Desktop.
Save jepser/864e3a5bd3847ee5397e to your computer and use it in GitHub Desktop.
<?php
/**
* The single template file
*
* @package WordPress Tutorial
* @since 0.1.0
*/
get_header(); ?>
<div class="container">
<div class="row">
<?php the_post(); ?>
<article>
<?php if(has_post_thumbnail()) { the_post_thumbnail(); } ?>
<h3><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h3>
<?php the_content(); ?>
</article>
</div>
</div>
<?php get_footer(); ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment