Make WordPress Core

Ticket #21759: 21759.2.diff

File 21759.2.diff, 1.7 KB (added by lancewillett, 13 years ago)
  • wp-content/themes/twentytwelve/style.css

     
    881881        line-height: 1.846153846;
    882882        color: #777;
    883883}
     884.single-author .entry-meta .by-author {
     885        display: none;
     886}
    884887
    885888
    886889/* =Archives
  • wp-content/themes/twentytwelve/functions.php

     
    336336
    337337        // Translators: 1 is category, 2 is tag, 3 is the date and 4 is the author's name.
    338338        if ( $tag_list ) {
    339                 $utility_text = __( 'This entry was posted in %1$s and tagged %2$s on %3$s by %4$s.', 'twentytwelve' );
     339                $utility_text = __( 'This entry was posted in %1$s and tagged %2$s on %3$s<span class="by-author"> by %4$s</span>.', 'twentytwelve' );
    340340        } elseif ( $categories_list ) {
    341                 $utility_text = __( 'This entry was posted in %1$s on %3$s by %4$s.', 'twentytwelve' );
     341                $utility_text = __( 'This entry was posted in %1$s on %3$s<span class="by-author"> by %4$s</span>.', 'twentytwelve' );
    342342        } else {
    343                 $utility_text = __( 'This entry was posted on %3$s by %4$s.', 'twentytwelve' );
     343                $utility_text = __( 'This entry was posted on %3$s<span class="by-author"> by %4$s</span>.', 'twentytwelve' );
    344344        }
    345345
    346346        printf(
     
    386386        if ( wp_style_is( 'twentytwelve-fonts', 'queue' ) )
    387387                $classes[] = 'custom-font-enabled';
    388388
     389        if ( ! is_multi_author() )
     390                $classes[] = 'single-author';
     391
    389392        return $classes;
    390393}
    391394add_filter( 'body_class', 'twentytwelve_body_class' );