Make WordPress Core

Changeset 23469


Ignore:
Timestamp:
02/22/2013 06:05:00 AM (13 years ago)
Author:
lancewillett
Message:

Twenty Thirteen: update post formats for consistent post meta display, fixes #23553.

Fix a few typos for "tags-links" selectors and remove extraneous newlines.

Location:
trunk/wp-content/themes/twentythirteen
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-content/themes/twentythirteen/content-image.php

    r23452 r23469  
    2626
    2727    <footer class="entry-meta">
    28         <?php twentythirteen_entry_date(); ?>
     28        <?php twentythirteen_entry_meta(); ?>
    2929
    3030        <?php if ( comments_open() ) : ?>
  • trunk/wp-content/themes/twentythirteen/content-status.php

    r23452 r23469  
    1616
    1717    <footer class="entry-meta">
    18         <?php if ( is_single() ) : ?>
    19             <?php twentythirteen_entry_meta(); ?>
    20         <?php else : ?>
    21             <?php twentythirteen_entry_date(); ?>
    22         <?php endif; ?>
     18        <?php twentythirteen_entry_meta(); ?>
    2319        <?php edit_post_link( __( 'Edit', 'twentythirteen' ), '<span class="edit-link">', '</span>' ); ?>
    2420
  • trunk/wp-content/themes/twentythirteen/functions.php

    r23462 r23469  
    390390 */
    391391function twentythirteen_entry_meta() {
    392 
    393392    if ( is_sticky() && is_home() && ! is_paged() )
    394393        echo '<span class="featured-post">' . __( 'Sticky', 'twentythirteen' ) . '</span>';
  • trunk/wp-content/themes/twentythirteen/style.css

    r23465 r23469  
    10861086}
    10871087
    1088 .entry-meta span.tag-links {
     1088.entry-meta span.tags-links {
    10891089    color: #f94a0a;
    10901090}
     
    14481448.format-chat .entry-meta a,
    14491449.format-chat .entry-content a,
    1450 .format-chat span.tag-links {
     1450.format-chat span.tags-links {
    14511451    color: #722d19;
    14521452}
     
    14551455    content: '\f108';
    14561456    margin-right: 2px;
     1457}
     1458
     1459.format-chat .entry-meta .author {
     1460    display: none;
    14571461}
    14581462
     
    14741478.format-gallery .entry-meta a,
    14751479.format-gallery .entry-content a,
    1476 .format-gallery span.tag-links {
     1480.format-gallery span.tags-links {
    14771481    color: #a22400;
    14781482}
     
    15781582}
    15791583
     1584.format-image .categories-links,
     1585.format-image .tags-links {
     1586    display: none;
     1587}
    15801588
    15811589/* Link */
     
    16401648.format-quote footer.entry-meta {
    16411649    margin-top: 0;
     1650}
     1651
     1652.format-quote .entry-meta .author {
     1653    display: none;
    16421654}
    16431655
     
    16891701}
    16901702
     1703.format-status .categories-links,
     1704.format-status .tags-links {
     1705    display: none;
     1706}
     1707
    16911708/* Ensures the dots in the dot background are in lockstep. */
    16921709.format-status .entry-meta:before {
     
    17491766    color: #ea9629;
    17501767}
    1751 
    17521768
    17531769.format-video .entry-title {
Note: See TracChangeset for help on using the changeset viewer.