minor bug in templates/default-loop.php
-
The comments link code contains an extra character which posts into the html:
<a href="<?php comments_link(); ?>" class="su-post-comments-link"><?php comments_number( __( '0 comments', 'su' ), __( '1 comment', 'su' ), __( '%n comments', 'su' ) ); ?></a>
should be:
<a href="<?php comments_link(); ?>" class="su-post-comments-link"><?php comments_number( __( '0 comments', 'su' ), __( '1 comment', 'su' ), __( '% comments', 'su' ) ); ?></a>
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘minor bug in templates/default-loop.php’ is closed to new replies.