Ticket #23799: 23799.4.patch
File 23799.4.patch, 966 bytes (added by , 10 years ago) |
---|
-
wp-content/themes/twentythirteen/image.php
67 67 $post_title 68 68 ); 69 69 70 $metadata = wp_get_attachment_metadata(); 71 printf( '<span class="attachment-meta full-size-link"><a href="%1$s" title="Link to full-size image">View full %2$s × %3$s resolution</a></span>', 70 printf( '<span class="attachment-meta full-size-link"><a href="%1$s" title="%2$s">%3$s</a></span>', 72 71 esc_url( wp_get_attachment_url() ), 73 $metadata['width'],74 $metadata['height']72 esc_attr__( 'Link to full-size image', 'twentythirteen' ), 73 __( 'View full resolution', 'twentythirteen' ) 75 74 ); 76 75 77 76 edit_post_link( __( 'Edit', 'twentythirteen' ), '<span class="edit-link">', '</span>' ); ?>