Remove the entry-meta class from footer element's in content templates. Keep entry-footer class for this purpose.

This commit is contained in:
Matthew Simo 2014-03-03 17:38:27 -06:00
parent 1a8d576e65
commit e32f0ded99
3 changed files with 5 additions and 5 deletions

View File

@ -20,5 +20,5 @@
) );
?>
</div><!-- .entry-content -->
<?php edit_post_link( __( 'Edit', '_s' ), '<footer class="entry-meta entry-footer"><span class="edit-link">', '</span></footer>' ); ?>
<?php edit_post_link( __( 'Edit', '_s' ), '<footer class="entry-footer"><span class="edit-link">', '</span></footer>' ); ?>
</article><!-- #post-## -->

View File

@ -23,7 +23,7 @@
?>
</div><!-- .entry-content -->
<footer class="entry-meta entry-footer">
<footer class="entry-footer">
<?php
/* translators: used between list items, there is a space after the comma */
$category_list = get_the_category_list( __( ', ', '_s' ) );
@ -58,5 +58,5 @@
?>
<?php edit_post_link( __( 'Edit', '_s' ), '<span class="edit-link">', '</span>' ); ?>
</footer><!-- .entry-meta.entry-footer -->
</footer><!-- entry-footer -->
</article><!-- #post-## -->

View File

@ -31,7 +31,7 @@
</div><!-- .entry-content -->
<?php endif; ?>
<footer class="entry-meta entry-footer">
<footer class="entry-footer">
<?php if ( 'post' == get_post_type() ) : // Hide category and tag text for pages on Search ?>
<?php
/* translators: used between list items, there is a space after the comma */
@ -59,5 +59,5 @@
<?php endif; ?>
<?php edit_post_link( __( 'Edit', '_s' ), '<span class="edit-link">', '</span>' ); ?>
</footer><!-- .entry-meta.entry-footer -->
</footer><!-- .entry-footer -->
</article><!-- #post-## -->