Skip to content

Instantly share code, notes, and snippets.

@tomharrigan
Created January 4, 2013 06:34
Show Gist options
  • Save tomharrigan/4450420 to your computer and use it in GitHub Desktop.
Save tomharrigan/4450420 to your computer and use it in GitHub Desktop.
post meta date only
function woo_post_meta() {
if ( is_page() ) { return; }
$post_info = '<span class="small">' . _x( '', 'post datetime', 'woothemes' ) . '</span> [post_date] <span class="small">' . ' [post_edit]';
printf( '<div class="post-meta">%s</div>' . "\n", apply_filters( 'woo_filter_post_meta', $post_info ) );
} // End woo_post_meta()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment