| 1 | Index: wp-content/themes/twentyfourteen/image.php
|
|---|
| 2 | ===================================================================
|
|---|
| 3 | --- wp-content/themes/twentyfourteen/image.php (revision 26595)
|
|---|
| 4 | +++ wp-content/themes/twentyfourteen/image.php (working copy)
|
|---|
| 5 | @@ -39,6 +39,12 @@
|
|---|
| 6 | <div class="entry-attachment">
|
|---|
| 7 | <div class="attachment">
|
|---|
| 8 | <?php twentyfourteen_the_attached_image(); ?>
|
|---|
| 9 | + <ul class="slider-direction-nav">
|
|---|
| 10 | + <li><?php previous_image_link( false, __( 'Previous', 'twentyfourteen' ) ); ?></li>
|
|---|
| 11 | + <li><?php next_image_link( false, __( 'Next', 'twentyfourteen' ) ); ?></li>
|
|---|
| 12 | + </ul>
|
|---|
| 13 | </div><!-- .attachment -->
|
|---|
| 14 |
|
|---|
| 15 | <?php if ( has_excerpt() ) : ?>
|
|---|
| 16 | Index: wp-content/themes/twentyfourteen/style.css
|
|---|
| 17 | ===================================================================
|
|---|
| 18 | --- wp-content/themes/twentyfourteen/style.css (revision 26595)
|
|---|
| 19 | +++ wp-content/themes/twentyfourteen/style.css (working copy)
|
|---|
| 20 | @@ -2862,6 +2862,7 @@
|
|---|
| 21 | display: block;
|
|---|
| 22 | font-size: 0;
|
|---|
| 23 | height: 46px;
|
|---|
| 24 | + text-decoration: none;
|
|---|
| 25 | }
|
|---|
| 26 |
|
|---|
| 27 | .slider-direction-nav a:hover {
|
|---|
| 28 | @@ -2875,7 +2876,7 @@
|
|---|
| 29 | line-height: 46px;
|
|---|
| 30 | }
|
|---|
| 31 |
|
|---|
| 32 | -.slider-direction-nav .slider-next:before {
|
|---|
| 33 | +.slider-direction-nav li:last-child a:before {
|
|---|
| 34 | content: "\f429";
|
|---|
| 35 | }
|
|---|
| 36 |
|
|---|