Skip to content

Instantly share code, notes, and snippets.

@szbl
Created August 25, 2015 14:05
Show Gist options
  • Save szbl/6035f7ef9203dd68d592 to your computer and use it in GitHub Desktop.
Save szbl/6035f7ef9203dd68d592 to your computer and use it in GitHub Desktop.
<?php get_header(); ?>
<article id="post-<?php echo get_the_ID(); ?>">
<h1><?php the_title(); ?></h1>
<div class="entry">
<?php the_content(); ?>
<?php if ( is_user_logged_in() ) echo get_edit_post_link( 'Edit this post...' ); ?>
</div>
</article>
<?php get_sidebar(); ?>
<?php get_footer();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment