Changeset 25969
- Timestamp:
- 10/28/2013 05:48:46 PM (11 years ago)
- Location:
- trunk/src/wp-content/themes/twentyfourteen
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-content/themes/twentyfourteen/content-aside.php
r25802 r25969 18 18 </div><!-- .entry-meta --> 19 19 <?php endif; ?> 20 21 <?php 22 if ( is_single() ) : 23 the_title( '<h1 class="entry-title">', '</h1>' ); 24 else : 25 the_title( '<h1 class="entry-title"><a href="' . esc_url( get_permalink() ) . '" rel="bookmark">', '</a></h1>' ); 26 endif; 27 ?> 20 28 21 29 <div class="entry-meta"> … … 47 55 48 56 <footer class="entry-meta"> 49 <div class="entry-meta">50 <?php51 if ( is_single() ) :52 the_title( '<h1 class="entry-title">', '</h1>' );53 else :54 the_title( '<h1 class="entry-title"><a href="' . esc_url( get_permalink() ) . '" rel="bookmark">', '</a></h1>' );55 endif;56 ?>57 </div>58 59 57 <?php if ( has_tag() ) : ?> 60 58 <span class="tag-links"><?php echo get_the_tag_list(); ?></span> -
trunk/src/wp-content/themes/twentyfourteen/content-link.php
r25802 r25969 18 18 </div><!-- .entry-meta --> 19 19 <?php endif; ?> 20 21 <?php 22 if ( is_single() ) : 23 the_title( '<h1 class="entry-title">', '</h1>' ); 24 else : 25 the_title( '<h1 class="entry-title"><a href="' . esc_url( get_permalink() ) . '" rel="bookmark">', '</a></h1>' ); 26 endif; 27 ?> 20 28 21 29 <div class="entry-meta"> -
trunk/src/wp-content/themes/twentyfourteen/content-quote.php
r25802 r25969 18 18 </div><!-- .entry-meta --> 19 19 <?php endif; ?> 20 21 <?php 22 if ( is_single() ) : 23 the_title( '<h1 class="entry-title">', '</h1>' ); 24 else : 25 the_title( '<h1 class="entry-title"><a href="' . esc_url( get_permalink() ) . '" rel="bookmark">', '</a></h1>' ); 26 endif; 27 ?> 20 28 21 29 <div class="entry-meta"> … … 47 55 48 56 <footer class="entry-meta"> 49 <div class="entry-meta">50 <?php51 if ( is_single() ) :52 the_title( '<h1 class="entry-title">', '</h1>' );53 else :54 the_title( '<h1 class="entry-title"><a href="' . esc_url( get_permalink() ) . '" rel="bookmark">', '</a></h1>' );55 endif;56 ?>57 </div>58 59 57 <?php if ( has_tag() ) : ?> 60 58 <span class="tag-links"><?php echo get_the_tag_list(); ?></span> -
trunk/src/wp-content/themes/twentyfourteen/content.php
r25802 r25969 21 21 <?php endif; ?> 22 22 23 <?php the_title( '<h1 class="entry-title"><a href="' . esc_url( get_permalink() ) . '" rel="bookmark">', '</a></h1>' ); ?> 23 <?php 24 if ( is_single() ) : 25 the_title( '<h1 class="entry-title">', '</h1>' ); 26 else : 27 the_title( '<h1 class="entry-title"><a href="' . esc_url( get_permalink() ) . '" rel="bookmark">', '</a></h1>' ); 28 endif; 29 ?> 24 30 25 31 <div class="entry-meta"> -
trunk/src/wp-content/themes/twentyfourteen/style.css
r25865 r25969 1059 1059 font-size: 15px; 1060 1060 font-weight: 900; 1061 line-height: 1 8px;1061 line-height: 1.2; 1062 1062 margin: 0 0 6px 0; 1063 1063 } … … 1078 1078 color: #55d737; 1079 1079 } 1080 1081 1080 1082 1081 … … 1507 1506 } 1508 1507 1509 .site-content .entry-meta .entry-title { 1510 font-size: 12px; 1511 font-weight: 400; 1512 line-height: 1.3333333333; 1513 margin-bottom: 8px; 1514 text-transform: none; 1515 } 1516 1517 .entry-meta .entry-title a { 1518 color: #767676; 1519 } 1520 1521 .entry-meta .entry-title a:hover { 1522 color: #2b2b2b; 1508 .site-content .format-link .entry-title, 1509 .site-content .format-aside .entry-title, 1510 .site-content .format-quote .entry-title { 1511 display: none; 1523 1512 } 1524 1513
Note: See TracChangeset
for help on using the changeset viewer.