Skip to content

Instantly share code, notes, and snippets.

@leocristofani
Created April 10, 2013 22:55
Show Gist options
  • Save leocristofani/5359176 to your computer and use it in GitHub Desktop.
Save leocristofani/5359176 to your computer and use it in GitHub Desktop.
<?php if(have_posts()) : ?>
<?php while(have_posts()) : the_post(); ?>
<article class="clearfix">
<header>
<h1><?php the_title(); ?></h1>
<?php if( current_user_can('edit_post', $post->ID)) : ?>
<?php edit_post_link('Edit This', '<p class="article-meta-extra">','</p>'); ?>
<?php endif; ?>
</header>
</article>
<?php endwhile; ?>
<?php endif; ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment