Changes from branches/3.0/wp-content/themes/twentyten/attachment.php at r16630 to trunk/wp-content/themes/twentyten/attachment.php at r17340
- File:
-
- 1 edited
-
trunk/wp-content/themes/twentyten/attachment.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-content/themes/twentyten/attachment.php
r16630 r17340 13 13 <div id="content" role="main"> 14 14 15 <?php if ( have_posts() ) while ( have_posts() ) : the_post(); ?> 16 17 <?php if ( ! empty( $post->post_parent ) ) : ?> 18 <p class="page-title"><a href="<?php echo get_permalink( $post->post_parent ); ?>" title="<?php esc_attr( printf( __( 'Return to %s', 'twentyten' ), get_the_title( $post->post_parent ) ) ); ?>" rel="gallery"><?php 19 /* translators: %s - title of parent post */ 20 printf( __( '<span class="meta-nav">←</span> %s', 'twentyten' ), get_the_title( $post->post_parent ) ); 21 ?></a></p> 22 <?php endif; ?> 23 24 <div id="post-<?php the_ID(); ?>" <?php post_class(); ?>> 25 <h2 class="entry-title"><?php the_title(); ?></h2> 26 27 <div class="entry-meta"> 28 <?php 29 printf(__('<span class="%1$s">By</span> %2$s', 'twentyten'), 30 'meta-prep meta-prep-author', 31 sprintf( '<span class="author vcard"><a class="url fn n" href="%1$s" title="%2$s">%3$s</a></span>', 32 get_author_posts_url( get_the_author_meta( 'ID' ) ), 33 sprintf( esc_attr__( 'View all posts by %s', 'twentyten' ), get_the_author() ), 34 get_the_author() 35 ) 36 ); 37 ?> 38 <span class="meta-sep">|</span> 39 <?php 40 printf( __('<span class="%1$s">Published</span> %2$s', 'twentyten'), 41 'meta-prep meta-prep-entry-date', 42 sprintf( '<span class="entry-date"><abbr class="published" title="%1$s">%2$s</abbr></span>', 43 esc_attr( get_the_time() ), 44 get_the_date() 45 ) 46 ); 47 if ( wp_attachment_is_image() ) { 48 echo ' <span class="meta-sep">|</span> '; 49 $metadata = wp_get_attachment_metadata(); 50 printf( __( 'Full size is %s pixels', 'twentyten'), 51 sprintf( '<a href="%1$s" title="%2$s">%3$s × %4$s</a>', 52 wp_get_attachment_url(), 53 esc_attr( __('Link to full-size image', 'twentyten') ), 54 $metadata['width'], 55 $metadata['height'] 56 ) 57 ); 58 } 59 ?> 60 <?php edit_post_link( __( 'Edit', 'twentyten' ), '<span class="meta-sep">|</span> <span class="edit-link">', '</span>' ); ?> 61 </div><!-- .entry-meta --> 62 63 <div class="entry-content"> 64 <div class="entry-attachment"> 65 <?php if ( wp_attachment_is_image() ) : 66 $attachments = array_values( get_children( array( 'post_parent' => $post->post_parent, 'post_status' => 'inherit', 'post_type' => 'attachment', 'post_mime_type' => 'image', 'order' => 'ASC', 'orderby' => 'menu_order ID' ) ) ); 67 foreach ( $attachments as $k => $attachment ) { 68 if ( $attachment->ID == $post->ID ) 69 break; 70 } 71 $k++; 72 // If there is more than 1 image attachment in a gallery 73 if ( count( $attachments ) > 1 ) { 74 if ( isset( $attachments[ $k ] ) ) 75 // get the URL of the next image attachment 76 $next_attachment_url = get_attachment_link( $attachments[ $k ]->ID ); 77 else 78 // or get the URL of the first image attachment 79 $next_attachment_url = get_attachment_link( $attachments[ 0 ]->ID ); 80 } else { 81 // or, if there's only 1 image attachment, get the URL of the image 82 $next_attachment_url = wp_get_attachment_url(); 83 } 84 ?> 85 <p class="attachment"><a href="<?php echo $next_attachment_url; ?>" title="<?php echo esc_attr( get_the_title() ); ?>" rel="attachment"><?php 86 $attachment_size = apply_filters( 'twentyten_attachment_size', 900 ); 87 echo wp_get_attachment_image( $post->ID, array( $attachment_size, 9999 ) ); // filterable image width with, essentially, no limit for image height. 88 ?></a></p> 89 90 <div id="nav-below" class="navigation"> 91 <div class="nav-previous"><?php previous_image_link( false ); ?></div> 92 <div class="nav-next"><?php next_image_link( false ); ?></div> 93 </div><!-- #nav-below --> 94 <?php else : ?> 95 <a href="<?php echo wp_get_attachment_url(); ?>" title="<?php echo esc_attr( get_the_title() ); ?>" rel="attachment"><?php echo basename( get_permalink() ); ?></a> 96 <?php endif; ?> 97 </div><!-- .entry-attachment --> 98 <div class="entry-caption"><?php if ( !empty( $post->post_excerpt ) ) the_excerpt(); ?></div> 99 100 <?php the_content( __( 'Continue reading <span class="meta-nav">→</span>', 'twentyten' ) ); ?> 101 <?php wp_link_pages( array( 'before' => '<div class="page-link">' . __( 'Pages:', 'twentyten' ), 'after' => '</div>' ) ); ?> 102 103 </div><!-- .entry-content --> 104 105 <div class="entry-utility"> 106 <?php twentyten_posted_in(); ?> 107 <?php edit_post_link( __( 'Edit', 'twentyten' ), ' <span class="edit-link">', '</span>' ); ?> 108 </div><!-- .entry-utility --> 109 </div><!-- #post-## --> 110 111 <?php comments_template(); ?> 112 113 <?php endwhile; ?> 15 <?php 16 /* Run the loop to output the attachment. 17 * If you want to overload this in a child theme then include a file 18 * called loop-attachment.php and that will be used instead. 19 */ 20 get_template_part( 'loop', 'attachment' ); 21 ?> 114 22 115 23 </div><!-- #content -->
Note: See TracChangeset
for help on using the changeset viewer.