Make WordPress Core

Changeset 26694


Ignore:
Timestamp:
12/05/2013 10:08:45 PM (13 years ago)
Author:
lancewillett
Message:

Twenty Fourteen: remove invalid rel attributes from post thumbnail output, and fix a CSS typo. See #25946 and #25325.

Location:
trunk/src/wp-content/themes/twentyfourteen
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-content/themes/twentyfourteen/content-featured-post.php

    r26556 r26694  
    1010
    1111<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
    12         <a class="post-thumbnail" href="<?php the_permalink(); ?>" rel="<?php the_ID(); ?>">
     12        <a class="post-thumbnail" href="<?php the_permalink(); ?>">
    1313        <?php
    1414                // Output the featured image.
  • trunk/src/wp-content/themes/twentyfourteen/css/ie.css

    r26689 r26694  
    10371037
    10381038.ie7 .featured-content .post-thumbnail img {
    1039         position: relative;;
     1039        position: relative;
    10401040}
    10411041
  • trunk/src/wp-content/themes/twentyfourteen/inc/template-tags.php

    r26599 r26694  
    195195        <?php else : ?>
    196196
    197         <a class="post-thumbnail" href="<?php the_permalink(); ?>" rel="<?php the_ID(); ?>">
     197        <a class="post-thumbnail" href="<?php the_permalink(); ?>">
    198198        <?php
    199199                if ( ( ! is_active_sidebar( 'sidebar-2' ) || is_page_template( 'page-templates/full-width.php' ) ) ) {
Note: See TracChangeset for help on using the changeset viewer.