_s: Don't show separator between meta data. Fixes #72.

This commit is contained in:
obenland 2013-06-27 07:03:43 -07:00
parent 39d8f7ad61
commit 514b2aa62d
2 changed files with 2 additions and 4 deletions

View File

@ -48,7 +48,6 @@
$tags_list = get_the_tag_list( '', __( ', ', '_s' ) );
if ( $tags_list ) :
?>
<span class="sep"> | </span>
<span class="tags-links">
<?php printf( __( 'Tagged %1$s', '_s' ), $tags_list ); ?>
</span>
@ -56,10 +55,9 @@
<?php endif; // End if 'post' == get_post_type() ?>
<?php if ( ! post_password_required() && ( comments_open() || '0' != get_comments_number() ) ) : ?>
<span class="sep"> | </span>
<span class="comments-link"><?php comments_popup_link( __( 'Leave a comment', '_s' ), __( '1 Comment', '_s' ), __( '% Comments', '_s' ) ); ?></span>
<?php endif; ?>
<?php edit_post_link( __( 'Edit', '_s' ), '<span class="sep"> | </span><span class="edit-link">', '</span>' ); ?>
<?php edit_post_link( __( 'Edit', '_s' ), '<span class="edit-link">', '</span>' ); ?>
</footer><!-- .entry-meta -->
</article><!-- #post-## -->

View File

@ -31,7 +31,7 @@ get_header();
get_the_title( $post->post_parent )
);
edit_post_link( __( 'Edit', '_s' ), '<span class="sep"> | </span> <span class="edit-link">', '</span>' );
edit_post_link( __( 'Edit', '_s' ), '<span class="edit-link">', '</span>' );
?>
</div><!-- .entry-meta -->