Skip to content

Instantly share code, notes, and snippets.

@bugsysop
Forked from samikeijonen/gist:3048693
Created July 26, 2012 05:19
Show Gist options
  • Save bugsysop/3180399 to your computer and use it in GitHub Desktop.
Save bugsysop/3180399 to your computer and use it in GitHub Desktop.
Filter Origin byline
add_filter( 'origin_byline', 'my_byline' );
function my_byline( $byline ) {
$byline = '<div class="byline">' . __( 'Article by [entry-author] - [entry-comments-link]', 'origin' ) . '</div>';
return $byline;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment