doing spans on post-author and post-date now seperating them to two individual entities

Signed-off-by: Philip M. Hofer (Frumph) <frumph_dragon@yahoo.com>
This commit is contained in:
Philip M. Hofer (Frumph) 2009-12-29 11:12:14 -08:00
parent 3150c96c29
commit 54ef378748
1 changed files with 1 additions and 1 deletions

View File

@ -43,7 +43,7 @@ function comicpress_display_post_calendar($is_comic = false) {
function comicpress_display_post_author() {
global $post;
$post_author = "<div class=\"post-author\"><span class=\"post-date\">".get_the_time('F jS, Y')."</span> <span class=\"pipe\">|</span> ".__(' by ','comicpress'). get_the_author_meta('display_name')."</div>\r\n";
$post_author = "<span class=\"post-date\">".get_the_time('F jS, Y')."</span> <span class=\"pipe\">|</span> <span class=\"post-author\"> ".__(' by ','comicpress'). get_the_author_meta('display_name')."</span>\r\n";
echo apply_filters('comicpress_display_post_author',$post_author);
}