Make WordPress Core

Ticket #25054: 25054.titleattr.diff

File 25054.titleattr.diff, 24.5 KB (added by sabreuse, 12 years ago)
  • wp-content/themes/twentyfourteen/functions.php

     
    322322                        $next_attachment_url = get_attachment_link( array_shift( $attachment_ids ) );
    323323        }
    324324
    325         printf( '<a href="%1$s" title="%2$s" rel="attachment">%3$s</a>',
     325        printf( '<a href="%1$s" rel="attachment">%2$s</a>',
    326326                esc_url( $next_attachment_url ),
    327                 the_title_attribute( array( 'echo' => false ) ),
    328327                wp_get_attachment_image( $post->ID, $attachment_size )
    329328        );
    330329}
  • wp-content/themes/twentyfourteen/image.php

     
    2323
    2424                                        <span class="entry-date"><time class="entry-date" datetime="<?php echo esc_attr( get_the_date( 'c' ) ); ?>"><?php echo esc_html( get_the_date() ); ?></time></span>
    2525
    26                                         <span class="full-size-link"><a href="<?php echo wp_get_attachment_url(); ?>" title="Link to full-size image"><?php echo $metadata['width']; ?> &times; <?php echo $metadata['height']; ?></a></span>
     26                                        <span class="full-size-link"><a href="<?php echo wp_get_attachment_url(); ?>"><?php echo $metadata['width']; ?> &times; <?php echo $metadata['height']; ?></a></span>
    2727
    28                                         <span class="parent-post-link"><a href="<?php echo get_permalink( $post->post_parent ); ?>" title="Return to <?php echo esc_attr( get_the_title( $post->post_parent ) ); ?>" rel="gallery"><?php echo get_the_title( $post->post_parent ); ?></a></span>
     28                                        <span class="parent-post-link"><a href="<?php echo get_permalink( $post->post_parent ); ?>" rel="gallery"><?php echo get_the_title( $post->post_parent ); ?></a></span>
    2929                                        <?php edit_post_link( __( 'Edit', 'twentyfourteen' ), '<span class="edit-link">', '</span>' ); ?>
    3030                                </div><!-- .entry-meta -->
    3131                        </header><!-- .entry-header -->
     
    5757                        <footer class="entry-meta">
    5858                                <?php
    5959                                        if ( comments_open() && pings_open() ) : // Comments and trackbacks open
    60                                                 printf( __( '<a class="comment-link" href="#respond" title="Post a comment">Post a comment</a> or leave a trackback: <a class="trackback-link" href="%s" title="Trackback URL for your post" rel="trackback">Trackback URL</a>.', 'twentyfourteen' ), get_trackback_url() );
     60                                                printf( __( '<a class="comment-link" href="#respond">Post a comment</a> or leave a trackback: <a class="trackback-link" href="%s" rel="trackback">Trackback URL</a>.', 'twentyfourteen' ), get_trackback_url() );
    6161                                        elseif ( ! comments_open() && pings_open() ) : // Only trackbacks open
    62                                                 printf( __( 'Comments are closed, but you can leave a trackback: <a class="trackback-link" href="%s" title="Trackback URL for your post" rel="trackback">Trackback URL</a>.', 'twentyfourteen' ), get_trackback_url() );
     62                                                printf( __( 'Comments are closed, but you can leave a trackback: <a class="trackback-link" href="%s" rel="trackback">Trackback URL</a>.', 'twentyfourteen' ), get_trackback_url() );
    6363                                        elseif ( comments_open() && ! pings_open() ) : // Only comments open
    64                                                 _e( 'Trackbacks are closed, but you can <a class="comment-link" href="#respond" title="Post a comment">post a comment</a>.', 'twentyfourteen' );
     64                                                _e( 'Trackbacks are closed, but you can <a class="comment-link" href="#respond">post a comment</a>.', 'twentyfourteen' );
    6565                                        elseif ( ! comments_open() && ! pings_open() ) : // Comments and trackbacks closed
    6666                                                _e( 'Both comments and trackbacks are currently closed.', 'twentyfourteen' );
    6767                                        endif;
  • wp-content/themes/twentyfourteen/inc/template-tags.php

     
    147147        if ( is_sticky() && is_home() && ! is_paged() )
    148148                echo '<span class="featured-post">' . __( 'Sticky', 'twentyfourteen' ) . '</span>';
    149149
    150         printf( __( '<span class="entry-date"><a href="%1$s" title="%2$s" rel="bookmark"><time class="entry-date" datetime="%3$s">%4$s</time></a></span> <span class="byline"><span class="author vcard"><a class="url fn n" href="%5$s" title="%6$s" rel="author">%7$s</a></span></span>', 'twentyfourteen' ),
     150        printf( __( '<span class="entry-date"><a href="%1$s" rel="bookmark"><time class="entry-date" datetime="%2$s">%3$s</time></a></span> <span class="byline"><span class="author vcard"><a class="url fn n" href="%4$s" rel="author">%5$s</a></span></span>', 'twentyfourteen' ),
    151151                esc_url( get_permalink() ),
    152                 esc_attr( get_the_time() ),
    153152                esc_attr( get_the_date( 'c' ) ),
    154153                esc_html( get_the_date() ),
    155154                esc_url( get_author_posts_url( get_the_author_meta( 'ID' ) ) ),
    156                 esc_attr( sprintf( __( 'View all posts by %s', 'twentyfourteen' ), get_the_author() ) ),
    157155                get_the_author()
    158156        );
    159157}
  • wp-content/themes/twentyfourteen/content.php

     
    77?>
    88
    99<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
    10         <a href="<?php the_permalink(); ?>" title="<?php echo esc_attr( sprintf( __( 'Permalink to %s', 'twentyfourteen' ), the_title_attribute( 'echo=0' ) ) ); ?>" rel="<?php the_ID(); ?>" class="attachment-featured-thumbnail">
     10        <a href="<?php the_permalink(); ?>" rel="<?php the_ID(); ?>" class="attachment-featured-thumbnail">
    1111                <?php the_post_thumbnail( 'featured-thumbnail-large' ); ?>
    1212        </a>
    1313
     
    2323                <div class="entry-meta">
    2424                        <?php if ( has_post_format( 'gallery' ) ) : ?>
    2525                        <span class="post-format">
    26                                 <a class="entry-format" href="<?php echo esc_url( get_post_format_link( 'gallery' ) ); ?>" title="<?php echo esc_attr( sprintf( __( 'All %s posts', 'twentyfourteen' ), get_post_format_string( 'gallery' ) ) ); ?>"><?php echo get_post_format_string( 'gallery' ); ?></a>
     26                                <a class="entry-format" href="<?php echo esc_url( get_post_format_link( 'gallery' ) ); ?>"><?php echo get_post_format_string( 'gallery' ); ?></a>
    2727                        </span>
    2828                        <?php
    2929                                endif;
  • wp-content/themes/twentyfourteen/content-post-format.php

     
    1212                        if ( $images ) :
    1313                                $image = array_shift( $images );
    1414                                ?>
    15                                 <a href="<?php the_permalink(); ?>" title="<?php echo esc_attr( sprintf( __( 'Permalink to %s', 'twentyfourteen' ), the_title_attribute( 'echo=0' ) ) ); ?>" rel="<?php the_ID(); ?>" class="attachment-featured-thumbnail">
     15                                <a href="<?php the_permalink(); ?>" rel="<?php the_ID(); ?>" class="attachment-featured-thumbnail">
    1616                                <?php echo wp_get_attachment_image( $image->ID, 'featured-thumbnail-large' ); ?>
    1717                                </a>
    1818                                <?php
     
    3131
    3232                <div class="entry-meta">
    3333                        <span class="post-format">
    34                                 <a class="entry-format" href="<?php echo esc_url( get_post_format_link( get_post_format() ) ); ?>" title="<?php echo esc_attr( sprintf( __( 'All %s posts', 'twentyfourteen' ), get_post_format_string( get_post_format() ) ) ); ?>"><?php echo get_post_format_string( get_post_format() ); ?></a>
     34                                <a class="entry-format" href="<?php echo esc_url( get_post_format_link( get_post_format() ) ); ?>"><?php echo get_post_format_string( get_post_format() ); ?></a>
    3535                        </span>
    3636
    3737                        <?php
  • wp-content/themes/twentyfourteen/header.php

     
    5454        <?php $header_image = get_header_image();
    5555        if ( ! empty( $header_image ) ) : ?>
    5656        <div id="site-header">
    57                 <a href="<?php echo esc_url( home_url( '/' ) ); ?>" title="<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>" rel="home">
     57                <a href="<?php echo esc_url( home_url( '/' ) ); ?>"rel="home">
    5858                        <img src="<?php header_image(); ?>" width="<?php echo get_custom_header()->width; ?>" height="<?php echo get_custom_header()->height; ?>" alt="" />
    5959                </a>
    6060        </div>
     
    6262
    6363        <header id="masthead" class="site-header" role="banner">
    6464                <div class="header-main clear">
    65                         <h1 class="site-title"><a href="<?php echo esc_url( home_url( '/' ) ); ?>" title="<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>" rel="home"><?php bloginfo( 'name' ); ?></a></h1>
     65                        <h1 class="site-title"><a href="<?php echo esc_url( home_url( '/' ) ); ?>" rel="home"><?php bloginfo( 'name' ); ?></a></h1>
    6666
    6767                        <div class="header-extra">
    6868                                <?php if ( $social_links ) : ?>
     
    7878
    7979                        <nav role="navigation" class="site-navigation primary-navigation">
    8080                                <h1 class="screen-reader-text"><?php _e( 'Primary Menu', 'twentyfourteen' ); ?></h1>
    81                                 <div class="screen-reader-text skip-link"><a href="#content" title="<?php esc_attr_e( 'Skip to content', 'twentyfourteen' ); ?>"><?php _e( 'Skip to content', 'twentyfourteen' ); ?></a></div>
     81                                <div class="screen-reader-text skip-link"><a href="#content"><?php _e( 'Skip to content', 'twentyfourteen' ); ?></a></div>
    8282                                <?php wp_nav_menu( array( 'theme_location' => 'primary' ) ); ?>
    8383                        </nav>
    8484
     
    9191                                <ul class="social-links clear">
    9292                                        <?php if ( is_email( $email_link ) ) : ?>
    9393                                        <li class="email-link">
    94                                                 <a href="mailto:<?php echo antispambot( sanitize_email( $email_link ) ); ?>" class="genericon" title="<?php esc_attr_e( 'Email', 'twentyfourteen' ); ?>" target="_blank">
     94                                                <a href="mailto:<?php echo antispambot( sanitize_email( $email_link ) ); ?>" class="genericon" target="_blank">
    9595                                                        <?php _e( 'Email', 'twentyfourteen' ); ?>
    9696                                                </a>
    9797                                        </li>
     
    9999
    100100                                        <?php if ( '' != $twitter_link ) : ?>
    101101                                        <li class="twitter-link">
    102                                                 <a href="<?php echo esc_url( $twitter_link ); ?>" class="genericon" title="<?php esc_attr_e( 'Twitter', 'twentyfourteen' ); ?>" target="_blank">
     102                                                <a href="<?php echo esc_url( $twitter_link ); ?>" class="genericon" target="_blank">
    103103                                                        <?php _e( 'Twitter', 'twentyfourteen' ); ?>
    104104                                                </a>
    105105                                        </li>
     
    107107
    108108                                        <?php if ( '' != $facebook_link ) : ?>
    109109                                        <li class="facebook-link">
    110                                                 <a href="<?php echo esc_url( $facebook_link ); ?>" class="genericon" title="<?php esc_attr_e( 'Facebook', 'twentyfourteen' ); ?>" target="_blank">
     110                                                <a href="<?php echo esc_url( $facebook_link ); ?>" class="genericon" target="_blank">
    111111                                                        <?php _e( 'Facebook', 'twentyfourteen' ); ?>
    112112                                                </a>
    113113                                        </li>
     
    115115
    116116                                        <?php if ( '' != $pinterest_link ) : ?>
    117117                                        <li class="pinterest-link">
    118                                                 <a href="<?php echo esc_url( $pinterest_link ); ?>" class="genericon" title="<?php esc_attr_e( 'Pinterest', 'twentyfourteen' ); ?>" target="_blank">
     118                                                <a href="<?php echo esc_url( $pinterest_link ); ?>" class="genericon" target="_blank">
    119119                                                        <?php _e( 'Pinterest', 'twentyfourteen' ); ?>
    120120                                                </a>
    121121                                        </li>
     
    123123
    124124                                        <?php if ( '' != $google_plus_link ) : ?>
    125125                                        <li class="google-link">
    126                                                 <a href="<?php echo esc_url( $google_plus_link ); ?>" class="genericon" title="<?php esc_attr_e( 'Google Plus', 'twentyfourteen' ); ?>" target="_blank">
     126                                                <a href="<?php echo esc_url( $google_plus_link ); ?>" class="genericon" target="_blank">
    127127                                                        <?php _e( 'Google Plus', 'twentyfourteen' ); ?>
    128128                                                </a>
    129129                                        </li>
     
    131131
    132132                                        <?php if ( '' != $linkedin_link ) : ?>
    133133                                        <li class="linkedin-link">
    134                                                 <a href="<?php echo esc_url( $linkedin_link ); ?>" class="genericon" title="<?php esc_attr_e( 'LinkedIn', 'twentyfourteen' ); ?>" target="_blank">
     134                                                <a href="<?php echo esc_url( $linkedin_link ); ?>" class="genericon" target="_blank">
    135135                                                        <?php _e( 'LinkedIn', 'twentyfourteen' ); ?>
    136136                                                </a>
    137137                                        </li>
     
    139139
    140140                                        <?php if ( '' != $flickr_link ) : ?>
    141141                                        <li class="flickr-link">
    142                                                 <a href="<?php echo esc_url( $flickr_link ); ?>" class="genericon" title="<?php esc_attr_e( 'Flickr', 'twentyfourteen' ); ?>" target="_blank">
     142                                                <a href="<?php echo esc_url( $flickr_link ); ?>" class="genericon" target="_blank">
    143143                                                        <?php _e( 'Flickr', 'twentyfourteen' ); ?>
    144144                                                </a>
    145145                                        </li>
     
    147147
    148148                                        <?php if ( '' != $github_link ) : ?>
    149149                                        <li class="github-link">
    150                                                 <a href="<?php echo esc_url( $github_link ); ?>" class="genericon" title="<?php esc_attr_e( 'Github', 'twentyfourteen' ); ?>" target="_blank">
     150                                                <a href="<?php echo esc_url( $github_link ); ?>" class="genericon" target="_blank">
    151151                                                        <?php _e( 'Github', 'twentyfourteen' ); ?>
    152152                                                </a>
    153153                                        </li>
     
    155155
    156156                                        <?php if ( '' != $dribbble_link ) : ?>
    157157                                        <li class="dribbble-link">
    158                                                 <a href="<?php echo esc_url( $dribbble_link ); ?>" class="genericon" title="<?php esc_attr_e( 'Dribbble', 'twentyfourteen' ); ?>" target="_blank">
     158                                                <a href="<?php echo esc_url( $dribbble_link ); ?>" class="genericon" target="_blank">
    159159                                                        <?php _e( 'Dribbble', 'twentyfourteen' ); ?>
    160160                                                </a>
    161161                                        </li>
     
    163163
    164164                                        <?php if ( '' != $vimeo_link ) : ?>
    165165                                        <li class="vimeo-link">
    166                                                 <a href="<?php echo esc_url( $vimeo_link ); ?>" class="genericon" title="<?php esc_attr_e( 'Vimeo', 'twentyfourteen' ); ?>" target="_blank">
     166                                                <a href="<?php echo esc_url( $vimeo_link ); ?>" class="genericon" target="_blank">
    167167                                                        <?php _e( 'Vimeo', 'twentyfourteen' ); ?>
    168168                                                </a>
    169169                                        </li>
     
    171171
    172172                                        <?php if ( '' != $youtube_link ) : ?>
    173173                                        <li class="youtube-link">
    174                                                 <a href="<?php echo esc_url( $youtube_link ); ?>" class="genericon" title="<?php esc_attr_e( 'YouTube', 'twentyfourteen' ); ?>" target="_blank">
     174                                                <a href="<?php echo esc_url( $youtube_link ); ?>" class="genericon" target="_blank">
    175175                                                        <?php _e( 'YouTube', 'twentyfourteen' ); ?>
    176176                                                </a>
    177177                                        </li>
  • wp-content/themes/twentyfourteen/content-featured-post.php

     
    66?>
    77
    88<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
    9         <a class="attachment-featured-featured" href="<?php the_permalink(); ?>" title="<?php echo esc_attr( sprintf( __( 'Permalink to %s', 'twentyfourteen' ), the_title_attribute( 'echo=0' ) ) ); ?>" rel="<?php the_ID(); ?>">
     9        <a class="attachment-featured-featured" href="<?php the_permalink(); ?>" rel="<?php the_ID(); ?>">
    1010                <?php
    1111                        if ( has_post_thumbnail() ) :
    1212                                the_post_thumbnail( 'featured-thumbnail-featured' );
  • wp-content/themes/twentyfourteen/recent-formatted-posts.php

     
    1616?>
    1717        <section id="recent-videos" class="recent-videos">
    1818                <h1 class="format-title genericon">
    19                         <a class="entry-format" href="<?php echo esc_url( get_post_format_link( 'video' ) ); ?>" title="<?php esc_attr_e( 'All Video Posts', 'twentyfourteen' ); ?>"><?php _e( 'Videos', 'twentyfourteen' ); ?></a>
     19                        <a class="entry-format" href="<?php echo esc_url( get_post_format_link( 'video' ) ); ?>"><?php _e( 'Videos', 'twentyfourteen' ); ?></a>
    2020                </h1>
    2121                <?php
    2222                        while ( $recent_videos->have_posts() ) : $recent_videos->the_post();
    2323                                get_template_part( 'content', 'recent-formatted-post' );
    2424                        endwhile;
    2525                ?>
    26                 <a class="more-formatted-posts-link" href="<?php echo esc_url( get_post_format_link( 'video' ) ); ?>" title="<?php esc_attr_e( 'More Videos', 'twentyfourteen' ); ?>"><?php _e( 'More Videos <span class="meta-nav">&rarr;</span>', 'twentyfourteen' ); ?></a>
     26                <a class="more-formatted-posts-link" href="<?php echo esc_url( get_post_format_link( 'video' ) ); ?>"><?php _e( 'More Videos <span class="meta-nav">&rarr;</span>', 'twentyfourteen' ); ?></a>
    2727        </section>
    2828<?php endif; ?>
    2929
     
    3333?>
    3434        <section id="recent-images" class="recent-images">
    3535                <h1 class="format-title genericon">
    36                         <a class="entry-format" href="<?php echo esc_url( get_post_format_link( 'image' ) ); ?>" title="<?php esc_attr_e( 'All Image Posts', 'twentyfourteen' ); ?>"><?php _e( 'Images', 'twentyfourteen' ); ?></a>
     36                        <a class="entry-format" href="<?php echo esc_url( get_post_format_link( 'image' ) ); ?>"><?php _e( 'Images', 'twentyfourteen' ); ?></a>
    3737                </h1>
    3838                <?php
    3939                        while ( $recent_images->have_posts() ) : $recent_images->the_post();
    4040                                get_template_part( 'content', 'recent-formatted-post' );
    4141                        endwhile;
    4242                ?>
    43                 <a class="more-formatted-posts-link" href="<?php echo esc_url( get_post_format_link( 'image' ) ); ?>" title="<?php esc_attr_e( 'More images', 'twentyfourteen' ); ?>"><?php _e( 'More images <span class="meta-nav">&rarr;</span>', 'twentyfourteen' ); ?></a>
     43                <a class="more-formatted-posts-link" href="<?php echo esc_url( get_post_format_link( 'image' ) ); ?>"><?php _e( 'More images <span class="meta-nav">&rarr;</span>', 'twentyfourteen' ); ?></a>
    4444        </section>
    4545<?php endif; ?>
    4646
     
    5050?>
    5151        <section id="recent-galleries" class="recent-galleries">
    5252                <h1 class="format-title genericon">
    53                         <a class="entry-format" href="<?php echo esc_url( get_post_format_link( 'gallery' ) ); ?>" title="<?php esc_attr_e( 'All Gallery Posts', 'twentyfourteen' ); ?>"><?php _e( 'Galleries', 'twentyfourteen' ); ?></a>
     53                        <a class="entry-format" href="<?php echo esc_url( get_post_format_link( 'gallery' ) ); ?>"><?php _e( 'Galleries', 'twentyfourteen' ); ?></a>
    5454                </h1>
    5555                <?php
    5656                        while ( $recent_galleries->have_posts() ) : $recent_galleries->the_post();
    5757                                get_template_part( 'content', 'recent-formatted-post' );
    5858                        endwhile;
    5959                ?>
    60                 <a class="more-formatted-posts-link" href="<?php echo esc_url( get_post_format_link( 'gallery' ) ); ?>" title="<?php esc_attr_e( 'More Galleries', 'twentyfourteen' ); ?>"><?php _e( 'More galleries <span class="meta-nav">&rarr;</span>', 'twentyfourteen' ); ?></a>
     60                <a class="more-formatted-posts-link" href="<?php echo esc_url( get_post_format_link( 'gallery' ) ); ?>"><?php _e( 'More galleries <span class="meta-nav">&rarr;</span>', 'twentyfourteen' ); ?></a>
    6161        </section>
    6262<?php endif; ?>
    6363
     
    6767?>
    6868        <section id="recent-asides" class="recent-asides">
    6969                <h1 class="format-title genericon">
    70                         <a class="entry-format" href="<?php echo esc_url( get_post_format_link( 'aside' ) ); ?>" title="<?php esc_attr_e( 'All Aside Posts', 'twentyfourteen' ); ?>"><?php _e( 'Asides', 'twentyfourteen' ); ?></a>
     70                        <a class="entry-format" href="<?php echo esc_url( get_post_format_link( 'aside' ) ); ?>"><?php _e( 'Asides', 'twentyfourteen' ); ?></a>
    7171                </h1>
    7272                <?php
    7373                        while ( $recent_asides->have_posts() ) : $recent_asides->the_post();
    7474                                get_template_part( 'content', 'recent-formatted-post' );
    7575                        endwhile;
    7676                ?>
    77                 <a class="more-formatted-posts-link" href="<?php echo esc_url( get_post_format_link( 'aside' ) ); ?>" title="<?php esc_attr_e( 'More Asides', 'twentyfourteen' ); ?>"><?php _e( 'More asides <span class="meta-nav">&rarr;</span>', 'twentyfourteen' ); ?></a>
     77                <a class="more-formatted-posts-link" href="<?php echo esc_url( get_post_format_link( 'aside' ) ); ?>"><?php _e( 'More asides <span class="meta-nav">&rarr;</span>', 'twentyfourteen' ); ?></a>
    7878        </section>
    7979<?php endif; ?>
    8080
     
    8484?>
    8585        <section id="recent-links" class="recent-links">
    8686                <h1 class="format-title genericon">
    87                         <a class="entry-format" href="<?php echo esc_url( get_post_format_link( 'link' ) ); ?>" title="<?php esc_attr_e( 'All Link Posts', 'twentyfourteen' ); ?>"><?php _e( 'Links', 'twentyfourteen' ); ?></a>
     87                        <a class="entry-format" href="<?php echo esc_url( get_post_format_link( 'link' ) ); ?>"><?php _e( 'Links', 'twentyfourteen' ); ?></a>
    8888                </h1>
    8989                <?php
    9090                        while ( $recent_links->have_posts() ) : $recent_links->the_post();
    9191                                get_template_part( 'content', 'recent-formatted-post' );
    9292                        endwhile;
    9393                ?>
    94                 <a class="more-formatted-posts-link" href="<?php echo esc_url( get_post_format_link( 'link' ) ); ?>" title="<?php esc_attr_e( 'More Links', 'twentyfourteen' ); ?>"><?php _e( 'More links <span class="meta-nav">&rarr;</span>', 'twentyfourteen' ); ?></a>
     94                <a class="more-formatted-posts-link" href="<?php echo esc_url( get_post_format_link( 'link' ) ); ?>"><?php _e( 'More links <span class="meta-nav">&rarr;</span>', 'twentyfourteen' ); ?></a>
    9595        </section>
    9696<?php endif; ?>
    9797
     
    101101?>
    102102        <section id="recent-quotes" class="recent-quotes">
    103103                <h1 class="format-title genericon">
    104                         <a class="entry-format" href="<?php echo esc_url( get_post_format_link( 'quote' ) ); ?>" title="<?php esc_attr_e( 'All Quote Posts', 'twentyfourteen' ); ?>"><?php _e( 'Quotes', 'twentyfourteen' ); ?></a>
     104                        <a class="entry-format" href="<?php echo esc_url( get_post_format_link( 'quote' ) ); ?>"><?php _e( 'Quotes', 'twentyfourteen' ); ?></a>
    105105                </h1>
    106106                <?php
    107107                        while ( $recent_quotes->have_posts() ) : $recent_quotes->the_post();
    108108                                get_template_part( 'content', 'recent-formatted-post' );
    109109                        endwhile;
    110110                ?>
    111                 <a class="more-formatted-posts-link" href="<?php echo esc_url( get_post_format_link( 'quote' ) ); ?>" title="<?php esc_attr_e( 'More Quotes', 'twentyfourteen' ); ?>"><?php _e( 'More quotes <span class="meta-nav">&rarr;</span>', 'twentyfourteen' ); ?></a>
     111                <a class="more-formatted-posts-link" href="<?php echo esc_url( get_post_format_link( 'quote' ) ); ?>"><?php _e( 'More quotes <span class="meta-nav">&rarr;</span>', 'twentyfourteen' ); ?></a>
    112112        </section>
    113113<?php endif; ?>
    114114
  • wp-content/themes/twentyfourteen/searchform.php

     
    99<form role="search" method="get" class="search-form" action="<?php echo esc_url( home_url( '/' ) ); ?>">
    1010        <label>
    1111                <span class="screen-reader-text"><?php _ex( 'Search for:', 'label', 'twentyfourteen' ); ?></span>
    12                 <input type="search" class="search-field" placeholder="<?php echo esc_attr_x( 'Search &hellip;', 'placeholder', 'twentyfourteen' ); ?>" value="<?php echo esc_attr( get_search_query() ); ?>" name="s" title="<?php _ex( 'Search for:', 'label', 'twentyfourteen' ); ?>">
     12                <input type="search" class="search-field" placeholder="<?php echo esc_attr_x( 'Search &hellip;', 'placeholder', 'twentyfourteen' ); ?>" value="<?php echo esc_attr( get_search_query() ); ?>" name="s">
    1313        </label>
    1414        <input type="submit" class="search-submit" value="<?php echo esc_attr_x( 'Search', 'submit button', 'twentyfourteen' ); ?>">
    1515</form>
  • wp-content/themes/twentyfourteen/content-single.php

     
    2828                <div class="entry-meta">
    2929                        <?php if ( has_post_format( array( 'status', 'chat', 'aside', 'link', 'quote', 'audio' ) ) ) : ?>
    3030                        <span class="post-format">
    31                                 <a class="entry-format" href="<?php echo esc_url( get_post_format_link( get_post_format() ) ); ?>" title="<?php echo esc_attr( sprintf( __( 'All %s posts', 'twentyfourteen' ), get_post_format_string( get_post_format() ) ) ); ?>"><?php echo get_post_format_string( get_post_format() ); ?></a>
     31                                <a class="entry-format" href="<?php echo esc_url( get_post_format_link( get_post_format() ) ); ?>"><?php echo get_post_format_string( get_post_format() ); ?></a>
    3232                        </span>
    3333                        <?php endif; ?>
    3434
  • wp-content/themes/twentyfourteen/footer.php

     
    1616                <footer id="colophon" class="site-footer" role="contentinfo">
    1717                        <div class="site-info">
    1818                                <?php do_action( 'twentyfourteen_credits' ); ?>
    19                                 <a href="<?php echo esc_url( __( 'http://wordpress.org/', 'twentythirteen' ) ); ?>" title="<?php esc_attr_e( 'Semantic Personal Publishing Platform', 'twentythirteen' ); ?>"><?php printf( __( 'Proudly powered by %s', 'twentythirteen' ), 'WordPress' ); ?></a>
     19                                <a href="<?php echo esc_url( __( 'http://wordpress.org/', 'twentythirteen' ) ); ?>"><?php printf( __( 'Proudly powered by %s', 'twentythirteen' ), 'WordPress' ); ?></a>
    2020                        </div><!-- .site-info -->
    2121                </footer><!-- #colophon -->
    2222        </div><!-- #page -->