Created
January 4, 2013 06:34
-
-
Save tomharrigan/4450420 to your computer and use it in GitHub Desktop.
post meta date only
This file contains 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
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