Ticket #30189: 30189.1.diff
File 30189.1.diff, 9.1 KB (added by , 10 years ago) |
---|
-
src/wp-content/themes/twentyfifteen/archive.php
100 100 101 101 <?php endwhile; ?> 102 102 103 <?php twentyfifteen_paging_nav(); ?> 103 <?php 104 the_pagination( array( 105 'before_page_number' => '<span class="meta-nav">' . __( 'Page', 'twentyfifteen' ) . '</span>', 106 ) ); 107 ?> 104 108 105 109 <?php else : ?> 106 110 -
src/wp-content/themes/twentyfifteen/functions.php
260 260 261 261 if ( $previous && has_post_thumbnail( $previous->ID ) ) { 262 262 $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 '; 264 268 } 265 269 266 270 if ( $next && has_post_thumbnail( $next->ID ) ) { 267 271 $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 '; 269 277 } 270 278 271 279 wp_add_inline_style( 'twentyfifteen-style', $css ); -
src/wp-content/themes/twentyfifteen/image.php
70 70 endif; 71 71 ?> 72 72 73 <?php twentyfifteen_post_nav(); ?> 73 <?php the_post_navigation( array( 74 'prev_text' => _x( '<span class="meta-nav">Published in</span><span class="post-title">%title</span>', 'Parent post link', 'twentyfifteen' ), 75 ) ); ?> 74 76 75 77 <?php endwhile; // end of the loop. ?> 76 78 -
src/wp-content/themes/twentyfifteen/inc/template-tags.php
9 9 * @since Twenty Fifteen 1.0 10 10 */ 11 11 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.017 * @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 <?php43 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.052 */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 <?php77 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 <?php87 }88 endif;89 90 12 if ( ! function_exists( 'twentyfifteen_comment_nav' ) ) : 91 13 /** 92 14 * Display navigation to next/previous comments when applicable. -
src/wp-content/themes/twentyfifteen/index.php
40 40 41 41 <?php endwhile; ?> 42 42 43 <?php twentyfifteen_paging_nav(); ?> 43 <?php 44 the_pagination( array( 45 'before_page_number' => '<span class="meta-nav">' . __( 'Page', 'twentyfifteen' ) . '</span>', 46 ) ); 47 ?> 44 48 45 49 <?php else : ?> 46 50 -
src/wp-content/themes/twentyfifteen/search.php
32 32 33 33 <?php endwhile; ?> 34 34 35 <?php twentyfifteen_paging_nav(); ?> 35 <?php 36 the_pagination( array( 37 'before_page_number' => '<span class="meta-nav">' . __( 'Page', 'twentyfifteen' ) . '</span>', 38 ) ); 39 ?> 36 40 37 41 <?php else : ?> 38 42 -
src/wp-content/themes/twentyfifteen/single.php
23 23 endif; 24 24 ?> 25 25 26 <?php twentyfifteen_post_nav(); ?> 26 <?php the_post_navigation( array( 27 'next_text' => _x( '<span class="meta-nav">Previous</span><span class="post-title">%title</span>', 'Previous post link', 'twentyfifteen' ), 28 'prev_text' => _x( '<span class="meta-nav">Next</span><span class="post-title">%title</span>', 'Next post link', 'twentyfifteen' ), 29 ) ); ?> 27 30 28 31 <?php endwhile; // end of the loop. ?> 29 32 -
src/wp-content/themes/twentyfifteen/style.css
933 933 z-index: 2; 934 934 } 935 935 936 .post-navigation a:hover .post-title, 937 .post-navigation a:focus .post-title { 938 color: #707070; 939 color: rgba(51, 51, 51, 0.7); 940 } 941 942 .post-navigation .has-post-thumbnail { 936 .post-navigation .nav-next, 937 .post-navigation .nav-previous { 943 938 background-position: center; 944 939 background-size: cover; 945 940 position: relative; 946 941 } 947 942 948 .post-navigation .has-post-thumbnail a:before { 949 background-color: rgba(0, 0, 0, 0.4); 943 .post-navigation a:before { 950 944 content: ""; 951 945 display: block; 952 946 height: 100%; … … 957 951 z-index: 1; 958 952 } 959 953 960 .post-navigation .has-post-thumbnaila:hover:before,961 .post-navigation .has-post-thumbnaila:focus:before {962 background-color: rgba(0, 0, 0, 0.2);954 .post-navigation a:hover:before, 955 .post-navigation a:focus:before { 956 opacity: 0.5; 963 957 } 964 958 965 .post-navigation .has-post-thumbnail a:hover .post-title, 966 .post-navigation .has-post-thumbnail a:focus .post-title { 967 color: #fff; 968 } 969 970 .post-navigation .has-post-thumbnail .post-title, 971 .post-navigation .has-post-thumbnail .meta-nav { 972 color: #fff; 973 } 974 975 .post-navigation .has-post-thumbnail .meta-nav { 959 .post-navigation .meta-nav { 976 960 opacity: 0.8; 977 961 } 978 962 979 .post-navigation .nav-previous :not(.has-post-thumbnail) + .nav-next:not(.has-post-thumbnail){963 .post-navigation .nav-previous + .nav-next { 980 964 border-top: 1px solid #eaeaea; 981 965 border-top: 1px solid rgba(51, 51, 51, 0.1); 982 966 }