Created
August 25, 2015 14:05
-
-
Save szbl/6035f7ef9203dd68d592 to your computer and use it in GitHub Desktop.
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 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