Skip to content

Commit

Permalink
no need to say published if that's always what this means
Browse files Browse the repository at this point in the history
  • Loading branch information
aschweigert authored Oct 11, 2016
1 parent 0870a64 commit d4a660d
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions inc/byline_class.php
Original file line number Diff line number Diff line change
Expand Up @@ -161,9 +161,8 @@ function maybe_published_date() {
*/
function published_date() {
echo sprintf(
' <time class="entry-date updated dtstamp pubdate" datetime="%1$s"><span class="published">%2$s </span>%3$s</time>',
esc_attr( get_the_date( 'c', $this->post_id ) ),
__( 'Published', 'largo' ),
' <time class="entry-date updated dtstamp pubdate" datetime="%1$s">%2$s</time>',
esc_attr( get_the_date( 'c', $this->post_id ) )
largo_time( false, $this->post_id )
);
}
Expand Down

1 comment on commit d4a660d

@benlk
Copy link
Collaborator

@benlk benlk commented on d4a660d Oct 11, 2016

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

looks like there aren't any styles on .published in Largo, so 👍

Please sign in to comment.