Don't like ads? PRO users don't see any ads ;-)
Guest

byline filter

By: samikeijonen on Feb 14th, 2012  |  syntax: PHP  |  size: 0.28 KB  |  hits: 51  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. function my_byline( $byline ) {
  2.  
  3.         $byline = '<div class="byline">[entry-author] [entry-edit-link before=" | "] ';
  4.         $byline .=  human_time_diff( get_the_time('U'), current_time('timestamp') ) . ' ago';
  5.         $byline .= '[entry-comments-link before=" | "]</div>';
  6.        
  7.         return $byline;
  8.        
  9. }