Make WordPress Core

Ticket #30189: 30189.2.diff

File 30189.2.diff, 9.1 KB (added by iamtakashi, 10 years ago)

With consistent PHP Tag style

  • src/wp-content/themes/twentyfifteen/archive.php

     
    100100
    101101                        <?php endwhile; ?>
    102102
    103                         <?php twentyfifteen_paging_nav(); ?>
     103                        <?php
     104                                the_pagination( array(
     105                                        'before_page_number' => '<span class="meta-nav">' . __( 'Page', 'twentyfifteen' ) . '</span>',
     106                                ) );
     107                        ?>
    104108
    105109                <?php else : ?>
    106110
  • src/wp-content/themes/twentyfifteen/functions.php

     
    260260
    261261        if ( $previous &&  has_post_thumbnail( $previous->ID ) ) {
    262262                $prevthumb = wp_get_attachment_image_src( get_post_thumbnail_id( $previous->ID ), 'post-thumbnail' );
    263                 $css .= '.post-navigation .nav-previous { background-image: url(' . esc_url( $prevthumb[0] ) . '); }';
     263                $css .= '
     264                        .post-navigation .nav-previous { background-image: url(' . esc_url( $prevthumb[0] ) . '); }
     265                        .post-navigation .nav-previous .post-title, .post-navigation .nav-previous .meta-nav { color: #fff; }
     266                        .post-navigation .nav-previous a:before { background-color: rgba(0, 0, 0, 0.4); }
     267                ';
    264268        }
    265269
    266270        if ( $next && has_post_thumbnail( $next->ID ) ) {
    267271                $nextthumb = wp_get_attachment_image_src( get_post_thumbnail_id( $next->ID ), 'post-thumbnail' );
    268                 $css .= '.post-navigation .nav-next { background-image: url(' . esc_url( $nextthumb[0] ) . '); }';
     272                $css .= '
     273                        .post-navigation .nav-next { background-image: url(' . esc_url( $nextthumb[0] ) . '); }
     274                        .post-navigation .nav-next .post-title, .post-navigation .nav-next .meta-nav { color: #fff; }
     275                        .post-navigation .nav-next a:before { background-color: rgba(0, 0, 0, 0.4); }
     276                ';
    269277        }
    270278
    271279        wp_add_inline_style( 'twentyfifteen-style', $css );
  • src/wp-content/themes/twentyfifteen/image.php

     
    7070                                        endif;
    7171                                ?>
    7272
    73                                 <?php twentyfifteen_post_nav(); ?>
     73                                <?php
     74                                        the_post_navigation( array(
     75                                                'prev_text' => _x( '<span class="meta-nav">Published in</span><span class="post-title">%title</span>', 'Parent post link', 'twentyfifteen' ),
     76                                        ) );
     77                                ?>
    7478
    7579                        <?php endwhile; // end of the loop. ?>
    7680
  • src/wp-content/themes/twentyfifteen/inc/template-tags.php

     
    99 * @since Twenty Fifteen 1.0
    1010 */
    1111
    12 if ( ! function_exists( 'twentyfifteen_paging_nav' ) ) :
    13 /**
    14  * Display navigation to next/previous set of posts when applicable.
    15  *
    16  * @since Twenty Fifteen 1.0
    17  * @uses paginate_links()
    18  *
    19  * @global WP_Query $wp_query WordPress Query object.
    20  */
    21 function twentyfifteen_paging_nav() {
    22         // Don't print empty markup if there's only one page.
    23         if ( $GLOBALS['wp_query']->max_num_pages < 2 ) {
    24                 return;
    25         }
    26 
    27         // Set up paginated links.
    28         $links = paginate_links( array(
    29                 'prev_text'          => esc_html__( 'Previous', 'twentyfifteen' ),
    30                 'next_text'          => esc_html__( 'Next', 'twentyfifteen' ),
    31                 'before_page_number' => '<span class="meta-nav">' . esc_html__( 'Page', 'twentyfifteen' ) . '</span>',
    32         ) );
    33 
    34         if ( $links ) :
    35         ?>
    36         <nav class="navigation pagination" role="navigation">
    37                 <h2 class="screen-reader-text"><?php esc_html_e( 'Posts navigation', 'twentyfifteen' ); ?></h2>
    38                 <div class="nav-links">
    39                         <?php echo $links; ?>
    40                 </div><!-- .nav-links -->
    41         </nav><!-- .pagination -->
    42         <?php
    43         endif;
    44 }
    45 endif;
    46 
    47 if ( ! function_exists( 'twentyfifteen_post_nav' ) ) :
    48 /**
    49  * Display navigation to next/previous post when applicable.
    50  *
    51  * @since Twenty Fifteen 1.0
    52  */
    53 function twentyfifteen_post_nav() {
    54         // Don't print empty markup if there's nowhere to navigate.
    55         $previous = ( is_attachment() ) ? get_post( get_post()->post_parent ) : get_adjacent_post( false, '', true );
    56         $next     = get_adjacent_post( false, '', false );
    57 
    58         if ( ( ! $next && ! $previous ) || ( is_attachment() && 'attachment' == $previous->post_type ) ) {
    59                 return;
    60         }
    61 
    62         $prev_class = $next_class = '';
    63 
    64         if ( $previous && has_post_thumbnail( $previous->ID ) ) {
    65                 $prev_class = ' has-post-thumbnail';
    66         }
    67 
    68         if ( $next && has_post_thumbnail( $next->ID ) ) {
    69                 $next_class = ' has-post-thumbnail';
    70         }
    71 
    72         ?>
    73         <nav class="navigation post-navigation" role="navigation">
    74                 <h2 class="screen-reader-text"><?php esc_html_e( 'Post navigation', 'twentyfifteen' ); ?></h2>
    75                 <div class="nav-links">
    76                         <?php
    77                         if ( is_attachment() ) :
    78                                 previous_post_link( '<div class="nav-previous' . $prev_class . '">%link</div>', _x( '<span class="meta-nav">Published In</span><span class="post-title">%title</span>', 'Parent post link', 'twentyfifteen' ) );
    79                         else :
    80                                 previous_post_link( '<div class="nav-previous' . $prev_class . '">%link</div>', _x( '<span class="meta-nav">Previous</span><span class="post-title">%title</span>', 'Previous post link', 'twentyfifteen' ) );
    81                                 next_post_link( '<div class="nav-next' . $next_class . '">%link</div>', _x( '<span class="meta-nav">Next</span><span class="post-title">%title</span>', 'Next post link', 'twentyfifteen' ) );
    82                         endif;
    83                         ?>
    84                 </div><!-- .nav-links -->
    85         </nav><!-- .post-navigation -->
    86         <?php
    87 }
    88 endif;
    89 
    9012if ( ! function_exists( 'twentyfifteen_comment_nav' ) ) :
    9113/**
    9214 * Display navigation to next/previous comments when applicable.
  • src/wp-content/themes/twentyfifteen/index.php

     
    4040
    4141                        <?php endwhile; ?>
    4242
    43                         <?php twentyfifteen_paging_nav(); ?>
     43                        <?php
     44                                the_pagination( array(
     45                                        'before_page_number' => '<span class="meta-nav">' . __( 'Page', 'twentyfifteen' ) . '</span>',
     46                                ) );
     47                        ?>
    4448
    4549                <?php else : ?>
    4650
  • src/wp-content/themes/twentyfifteen/search.php

     
    3232
    3333                        <?php endwhile; ?>
    3434
    35                         <?php twentyfifteen_paging_nav(); ?>
     35                        <?php
     36                                the_pagination( array(
     37                                        'before_page_number' => '<span class="meta-nav">' . __( 'Page', 'twentyfifteen' ) . '</span>',
     38                                ) );
     39                        ?>
    3640
    3741                <?php else : ?>
    3842
  • src/wp-content/themes/twentyfifteen/single.php

     
    2323                                endif;
    2424                        ?>
    2525
    26                         <?php twentyfifteen_post_nav(); ?>
     26                        <?php
     27                                the_post_navigation( array(
     28                                        'next_text' => _x( '<span class="meta-nav">Previous</span><span class="post-title">%title</span>', 'Previous post link', 'twentyfifteen' ),
     29                                        'prev_text' => _x( '<span class="meta-nav">Next</span><span class="post-title">%title</span>', 'Next post link', 'twentyfifteen' ),
     30                                ) );
     31                        ?>
    2732
    2833                <?php endwhile; // end of the loop. ?>
    2934
  • src/wp-content/themes/twentyfifteen/style.css

     
    954954        z-index: 2;
    955955}
    956956
    957 .post-navigation a:hover .post-title,
    958 .post-navigation a:focus .post-title {
    959         color: #707070;
    960         color: rgba(51, 51, 51, 0.7);
    961 }
    962 
    963 .post-navigation .has-post-thumbnail {
     957.post-navigation .nav-next,
     958.post-navigation .nav-previous {
    964959        background-position: center;
    965960        background-size: cover;
    966961        position: relative;
    967962}
    968963
    969 .post-navigation .has-post-thumbnail a:before {
    970         background-color: rgba(0, 0, 0, 0.4);
     964.post-navigation a:before {
    971965        content: "";
    972966        display: block;
    973967        height: 100%;
     
    978972        z-index: 1;
    979973}
    980974
    981 .post-navigation .has-post-thumbnail a:hover:before,
    982 .post-navigation .has-post-thumbnail a:focus:before {
    983         background-color: rgba(0, 0, 0, 0.2);
     975.post-navigation a:hover:before,
     976.post-navigation a:focus:before {
     977        opacity: 0.5;
    984978}
    985979
    986 .post-navigation .has-post-thumbnail a:hover .post-title,
    987 .post-navigation .has-post-thumbnail a:focus .post-title {
    988         color: #fff;
    989 }
    990 
    991 .post-navigation .has-post-thumbnail .post-title,
    992 .post-navigation .has-post-thumbnail .meta-nav {
    993         color: #fff;
    994 }
    995 
    996 .post-navigation .has-post-thumbnail .meta-nav {
     980.post-navigation .meta-nav {
    997981        opacity: 0.8;
    998982}
    999983
    1000 .post-navigation .nav-previous:not(.has-post-thumbnail) + .nav-next:not(.has-post-thumbnail) {
     984.post-navigation .nav-previous + .nav-next {
    1001985        border-top: 1px solid #eaeaea;
    1002986        border-top: 1px solid rgba(51, 51, 51, 0.1);
    1003987}