Skip to content

Instantly share code, notes, and snippets.

@samikeijonen
Created July 4, 2012 18:12
Show Gist options
  • Save samikeijonen/3048693 to your computer and use it in GitHub Desktop.
Save samikeijonen/3048693 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