Skip to content

Instantly share code, notes, and snippets.

@rayflores
Created July 18, 2014 22:25
Show Gist options
  • Save rayflores/ccd72d73842a24f46f97 to your computer and use it in GitHub Desktop.
Save rayflores/ccd72d73842a24f46f97 to your computer and use it in GitHub Desktop.
<?php
/*-----------------------------------------------------------------------------------*/
/* Post Meta */
/*-----------------------------------------------------------------------------------*/
if (!function_exists('woo_post_meta')) {
function woo_post_meta( ) {
?>
<p class="post-meta">
<span class="post-author"><span class="small"><?php _e('by', 'woothemes') ?></span> <?php the_author_posts_link(); ?></span>
<span class="post-date"><span class="small"><?php _e('on', 'woothemes') ?></span> <?php the_time( get_option( 'date_format' ) ); ?></span>
<span class="post-category"><span class="small"><?php _e('in', 'woothemes') ?></span> <?php the_category(', ') ?></span>
<?php edit_post_link( __('{ Edit }', 'woothemes'), '<span class="small">', '</span>' ); ?>
</p>
<?php
}
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment