Make WordPress Core


Ignore:
Timestamp:
09/05/2012 04:33:55 AM (12 years ago)
Author:
lancewillett
Message:

Twenty Twelve: hide author name on single author blogs, using is_multi_author() -- fixes #21759, props iamtakashi.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-content/themes/twentytwelve/functions.php

    r21726 r21761  
    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
     
    387387        $classes[] = 'custom-font-enabled';
    388388
     389    if ( ! is_multi_author() )
     390        $classes[] = 'single-author';
     391
    389392    return $classes;
    390393}
Note: See TracChangeset for help on using the changeset viewer.