Ticket #25054: 25054.titleattr.diff
File 25054.titleattr.diff, 24.5 KB (added by , 12 years ago) |
---|
-
wp-content/themes/twentyfourteen/functions.php
322 322 $next_attachment_url = get_attachment_link( array_shift( $attachment_ids ) ); 323 323 } 324 324 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>', 326 326 esc_url( $next_attachment_url ), 327 the_title_attribute( array( 'echo' => false ) ),328 327 wp_get_attachment_image( $post->ID, $attachment_size ) 329 328 ); 330 329 } -
wp-content/themes/twentyfourteen/image.php
23 23 24 24 <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> 25 25 26 <span class="full-size-link"><a href="<?php echo wp_get_attachment_url(); ?>" title="Link to full-size image"><?php echo $metadata['width']; ?> × <?php echo $metadata['height']; ?></a></span>26 <span class="full-size-link"><a href="<?php echo wp_get_attachment_url(); ?>"><?php echo $metadata['width']; ?> × <?php echo $metadata['height']; ?></a></span> 27 27 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> 29 29 <?php edit_post_link( __( 'Edit', 'twentyfourteen' ), '<span class="edit-link">', '</span>' ); ?> 30 30 </div><!-- .entry-meta --> 31 31 </header><!-- .entry-header --> … … 57 57 <footer class="entry-meta"> 58 58 <?php 59 59 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() ); 61 61 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() ); 63 63 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' ); 65 65 elseif ( ! comments_open() && ! pings_open() ) : // Comments and trackbacks closed 66 66 _e( 'Both comments and trackbacks are currently closed.', 'twentyfourteen' ); 67 67 endif; -
wp-content/themes/twentyfourteen/inc/template-tags.php
147 147 if ( is_sticky() && is_home() && ! is_paged() ) 148 148 echo '<span class="featured-post">' . __( 'Sticky', 'twentyfourteen' ) . '</span>'; 149 149 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' ), 151 151 esc_url( get_permalink() ), 152 esc_attr( get_the_time() ),153 152 esc_attr( get_the_date( 'c' ) ), 154 153 esc_html( get_the_date() ), 155 154 esc_url( get_author_posts_url( get_the_author_meta( 'ID' ) ) ), 156 esc_attr( sprintf( __( 'View all posts by %s', 'twentyfourteen' ), get_the_author() ) ),157 155 get_the_author() 158 156 ); 159 157 } -
wp-content/themes/twentyfourteen/content.php
7 7 ?> 8 8 9 9 <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"> 11 11 <?php the_post_thumbnail( 'featured-thumbnail-large' ); ?> 12 12 </a> 13 13 … … 23 23 <div class="entry-meta"> 24 24 <?php if ( has_post_format( 'gallery' ) ) : ?> 25 25 <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> 27 27 </span> 28 28 <?php 29 29 endif; -
wp-content/themes/twentyfourteen/content-post-format.php
12 12 if ( $images ) : 13 13 $image = array_shift( $images ); 14 14 ?> 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"> 16 16 <?php echo wp_get_attachment_image( $image->ID, 'featured-thumbnail-large' ); ?> 17 17 </a> 18 18 <?php … … 31 31 32 32 <div class="entry-meta"> 33 33 <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> 35 35 </span> 36 36 37 37 <?php -
wp-content/themes/twentyfourteen/header.php
54 54 <?php $header_image = get_header_image(); 55 55 if ( ! empty( $header_image ) ) : ?> 56 56 <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"> 58 58 <img src="<?php header_image(); ?>" width="<?php echo get_custom_header()->width; ?>" height="<?php echo get_custom_header()->height; ?>" alt="" /> 59 59 </a> 60 60 </div> … … 62 62 63 63 <header id="masthead" class="site-header" role="banner"> 64 64 <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> 66 66 67 67 <div class="header-extra"> 68 68 <?php if ( $social_links ) : ?> … … 78 78 79 79 <nav role="navigation" class="site-navigation primary-navigation"> 80 80 <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> 82 82 <?php wp_nav_menu( array( 'theme_location' => 'primary' ) ); ?> 83 83 </nav> 84 84 … … 91 91 <ul class="social-links clear"> 92 92 <?php if ( is_email( $email_link ) ) : ?> 93 93 <li class="email-link"> 94 <a href="mailto:<?php echo antispambot( sanitize_email( $email_link ) ); ?>" class="genericon" t itle="<?php esc_attr_e( 'Email', 'twentyfourteen' ); ?>" target="_blank">94 <a href="mailto:<?php echo antispambot( sanitize_email( $email_link ) ); ?>" class="genericon" target="_blank"> 95 95 <?php _e( 'Email', 'twentyfourteen' ); ?> 96 96 </a> 97 97 </li> … … 99 99 100 100 <?php if ( '' != $twitter_link ) : ?> 101 101 <li class="twitter-link"> 102 <a href="<?php echo esc_url( $twitter_link ); ?>" class="genericon" t itle="<?php esc_attr_e( 'Twitter', 'twentyfourteen' ); ?>" target="_blank">102 <a href="<?php echo esc_url( $twitter_link ); ?>" class="genericon" target="_blank"> 103 103 <?php _e( 'Twitter', 'twentyfourteen' ); ?> 104 104 </a> 105 105 </li> … … 107 107 108 108 <?php if ( '' != $facebook_link ) : ?> 109 109 <li class="facebook-link"> 110 <a href="<?php echo esc_url( $facebook_link ); ?>" class="genericon" t itle="<?php esc_attr_e( 'Facebook', 'twentyfourteen' ); ?>" target="_blank">110 <a href="<?php echo esc_url( $facebook_link ); ?>" class="genericon" target="_blank"> 111 111 <?php _e( 'Facebook', 'twentyfourteen' ); ?> 112 112 </a> 113 113 </li> … … 115 115 116 116 <?php if ( '' != $pinterest_link ) : ?> 117 117 <li class="pinterest-link"> 118 <a href="<?php echo esc_url( $pinterest_link ); ?>" class="genericon" t itle="<?php esc_attr_e( 'Pinterest', 'twentyfourteen' ); ?>" target="_blank">118 <a href="<?php echo esc_url( $pinterest_link ); ?>" class="genericon" target="_blank"> 119 119 <?php _e( 'Pinterest', 'twentyfourteen' ); ?> 120 120 </a> 121 121 </li> … … 123 123 124 124 <?php if ( '' != $google_plus_link ) : ?> 125 125 <li class="google-link"> 126 <a href="<?php echo esc_url( $google_plus_link ); ?>" class="genericon" t itle="<?php esc_attr_e( 'Google Plus', 'twentyfourteen' ); ?>" target="_blank">126 <a href="<?php echo esc_url( $google_plus_link ); ?>" class="genericon" target="_blank"> 127 127 <?php _e( 'Google Plus', 'twentyfourteen' ); ?> 128 128 </a> 129 129 </li> … … 131 131 132 132 <?php if ( '' != $linkedin_link ) : ?> 133 133 <li class="linkedin-link"> 134 <a href="<?php echo esc_url( $linkedin_link ); ?>" class="genericon" t itle="<?php esc_attr_e( 'LinkedIn', 'twentyfourteen' ); ?>" target="_blank">134 <a href="<?php echo esc_url( $linkedin_link ); ?>" class="genericon" target="_blank"> 135 135 <?php _e( 'LinkedIn', 'twentyfourteen' ); ?> 136 136 </a> 137 137 </li> … … 139 139 140 140 <?php if ( '' != $flickr_link ) : ?> 141 141 <li class="flickr-link"> 142 <a href="<?php echo esc_url( $flickr_link ); ?>" class="genericon" t itle="<?php esc_attr_e( 'Flickr', 'twentyfourteen' ); ?>" target="_blank">142 <a href="<?php echo esc_url( $flickr_link ); ?>" class="genericon" target="_blank"> 143 143 <?php _e( 'Flickr', 'twentyfourteen' ); ?> 144 144 </a> 145 145 </li> … … 147 147 148 148 <?php if ( '' != $github_link ) : ?> 149 149 <li class="github-link"> 150 <a href="<?php echo esc_url( $github_link ); ?>" class="genericon" t itle="<?php esc_attr_e( 'Github', 'twentyfourteen' ); ?>" target="_blank">150 <a href="<?php echo esc_url( $github_link ); ?>" class="genericon" target="_blank"> 151 151 <?php _e( 'Github', 'twentyfourteen' ); ?> 152 152 </a> 153 153 </li> … … 155 155 156 156 <?php if ( '' != $dribbble_link ) : ?> 157 157 <li class="dribbble-link"> 158 <a href="<?php echo esc_url( $dribbble_link ); ?>" class="genericon" t itle="<?php esc_attr_e( 'Dribbble', 'twentyfourteen' ); ?>" target="_blank">158 <a href="<?php echo esc_url( $dribbble_link ); ?>" class="genericon" target="_blank"> 159 159 <?php _e( 'Dribbble', 'twentyfourteen' ); ?> 160 160 </a> 161 161 </li> … … 163 163 164 164 <?php if ( '' != $vimeo_link ) : ?> 165 165 <li class="vimeo-link"> 166 <a href="<?php echo esc_url( $vimeo_link ); ?>" class="genericon" t itle="<?php esc_attr_e( 'Vimeo', 'twentyfourteen' ); ?>" target="_blank">166 <a href="<?php echo esc_url( $vimeo_link ); ?>" class="genericon" target="_blank"> 167 167 <?php _e( 'Vimeo', 'twentyfourteen' ); ?> 168 168 </a> 169 169 </li> … … 171 171 172 172 <?php if ( '' != $youtube_link ) : ?> 173 173 <li class="youtube-link"> 174 <a href="<?php echo esc_url( $youtube_link ); ?>" class="genericon" t itle="<?php esc_attr_e( 'YouTube', 'twentyfourteen' ); ?>" target="_blank">174 <a href="<?php echo esc_url( $youtube_link ); ?>" class="genericon" target="_blank"> 175 175 <?php _e( 'YouTube', 'twentyfourteen' ); ?> 176 176 </a> 177 177 </li> -
wp-content/themes/twentyfourteen/content-featured-post.php
6 6 ?> 7 7 8 8 <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(); ?>"> 10 10 <?php 11 11 if ( has_post_thumbnail() ) : 12 12 the_post_thumbnail( 'featured-thumbnail-featured' ); -
wp-content/themes/twentyfourteen/recent-formatted-posts.php
16 16 ?> 17 17 <section id="recent-videos" class="recent-videos"> 18 18 <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> 20 20 </h1> 21 21 <?php 22 22 while ( $recent_videos->have_posts() ) : $recent_videos->the_post(); 23 23 get_template_part( 'content', 'recent-formatted-post' ); 24 24 endwhile; 25 25 ?> 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">→</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">→</span>', 'twentyfourteen' ); ?></a> 27 27 </section> 28 28 <?php endif; ?> 29 29 … … 33 33 ?> 34 34 <section id="recent-images" class="recent-images"> 35 35 <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> 37 37 </h1> 38 38 <?php 39 39 while ( $recent_images->have_posts() ) : $recent_images->the_post(); 40 40 get_template_part( 'content', 'recent-formatted-post' ); 41 41 endwhile; 42 42 ?> 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">→</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">→</span>', 'twentyfourteen' ); ?></a> 44 44 </section> 45 45 <?php endif; ?> 46 46 … … 50 50 ?> 51 51 <section id="recent-galleries" class="recent-galleries"> 52 52 <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> 54 54 </h1> 55 55 <?php 56 56 while ( $recent_galleries->have_posts() ) : $recent_galleries->the_post(); 57 57 get_template_part( 'content', 'recent-formatted-post' ); 58 58 endwhile; 59 59 ?> 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">→</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">→</span>', 'twentyfourteen' ); ?></a> 61 61 </section> 62 62 <?php endif; ?> 63 63 … … 67 67 ?> 68 68 <section id="recent-asides" class="recent-asides"> 69 69 <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> 71 71 </h1> 72 72 <?php 73 73 while ( $recent_asides->have_posts() ) : $recent_asides->the_post(); 74 74 get_template_part( 'content', 'recent-formatted-post' ); 75 75 endwhile; 76 76 ?> 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">→</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">→</span>', 'twentyfourteen' ); ?></a> 78 78 </section> 79 79 <?php endif; ?> 80 80 … … 84 84 ?> 85 85 <section id="recent-links" class="recent-links"> 86 86 <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> 88 88 </h1> 89 89 <?php 90 90 while ( $recent_links->have_posts() ) : $recent_links->the_post(); 91 91 get_template_part( 'content', 'recent-formatted-post' ); 92 92 endwhile; 93 93 ?> 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">→</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">→</span>', 'twentyfourteen' ); ?></a> 95 95 </section> 96 96 <?php endif; ?> 97 97 … … 101 101 ?> 102 102 <section id="recent-quotes" class="recent-quotes"> 103 103 <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> 105 105 </h1> 106 106 <?php 107 107 while ( $recent_quotes->have_posts() ) : $recent_quotes->the_post(); 108 108 get_template_part( 'content', 'recent-formatted-post' ); 109 109 endwhile; 110 110 ?> 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">→</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">→</span>', 'twentyfourteen' ); ?></a> 112 112 </section> 113 113 <?php endif; ?> 114 114 -
wp-content/themes/twentyfourteen/searchform.php
9 9 <form role="search" method="get" class="search-form" action="<?php echo esc_url( home_url( '/' ) ); ?>"> 10 10 <label> 11 11 <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 …', '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 …', 'placeholder', 'twentyfourteen' ); ?>" value="<?php echo esc_attr( get_search_query() ); ?>" name="s"> 13 13 </label> 14 14 <input type="submit" class="search-submit" value="<?php echo esc_attr_x( 'Search', 'submit button', 'twentyfourteen' ); ?>"> 15 15 </form> -
wp-content/themes/twentyfourteen/content-single.php
28 28 <div class="entry-meta"> 29 29 <?php if ( has_post_format( array( 'status', 'chat', 'aside', 'link', 'quote', 'audio' ) ) ) : ?> 30 30 <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> 32 32 </span> 33 33 <?php endif; ?> 34 34 -
wp-content/themes/twentyfourteen/footer.php
16 16 <footer id="colophon" class="site-footer" role="contentinfo"> 17 17 <div class="site-info"> 18 18 <?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> 20 20 </div><!-- .site-info --> 21 21 </footer><!-- #colophon --> 22 22 </div><!-- #page -->