|
1 <?php |
|
2 /** |
|
3 * The template for displaying image attachments. |
|
4 * |
|
5 * @package WordPress |
|
6 * @subpackage Twenty_Eleven |
|
7 * @since Twenty Eleven 1.0 |
|
8 */ |
|
9 |
|
10 get_header(); ?> |
|
11 |
|
12 <div id="primary" class="image-attachment"> |
|
13 <div id="content" role="main"> |
|
14 |
|
15 <?php while ( have_posts() ) : the_post(); ?> |
|
16 |
|
17 <nav id="nav-single"> |
|
18 <h3 class="assistive-text"><?php _e( 'Image navigation', 'twentyeleven' ); ?></h3> |
|
19 <span class="nav-previous"><?php previous_image_link( false, __( '← Previous' , 'twentyeleven' ) ); ?></span> |
|
20 <span class="nav-next"><?php next_image_link( false, __( 'Next →' , 'twentyeleven' ) ); ?></span> |
|
21 </nav><!-- #nav-single --> |
|
22 |
|
23 <article id="post-<?php the_ID(); ?>" <?php post_class(); ?>> |
|
24 <header class="entry-header"> |
|
25 <h1 class="entry-title"><?php the_title(); ?></h1> |
|
26 |
|
27 <div class="entry-meta"> |
|
28 <?php |
|
29 $metadata = wp_get_attachment_metadata(); |
|
30 printf( __( '<span class="meta-prep meta-prep-entry-date">Published </span> <span class="entry-date"><abbr class="published" title="%1$s">%2$s</abbr></span> at <a href="%3$s" title="Link to full-size image">%4$s × %5$s</a> in <a href="%6$s" title="Return to %7$s" rel="gallery">%8$s</a>', 'twentyeleven' ), |
|
31 esc_attr( get_the_time() ), |
|
32 get_the_date(), |
|
33 esc_url( wp_get_attachment_url() ), |
|
34 $metadata['width'], |
|
35 $metadata['height'], |
|
36 esc_url( get_permalink( $post->post_parent ) ), |
|
37 esc_attr( strip_tags( get_the_title( $post->post_parent ) ) ), |
|
38 get_the_title( $post->post_parent ) |
|
39 ); |
|
40 ?> |
|
41 <?php edit_post_link( __( 'Edit', 'twentyeleven' ), '<span class="edit-link">', '</span>' ); ?> |
|
42 </div><!-- .entry-meta --> |
|
43 |
|
44 </header><!-- .entry-header --> |
|
45 |
|
46 <div class="entry-content"> |
|
47 |
|
48 <div class="entry-attachment"> |
|
49 <div class="attachment"> |
|
50 <?php |
|
51 /** |
|
52 * Grab the IDs of all the image attachments in a gallery so we can get the URL of the next adjacent image in a gallery, |
|
53 * or the first image (if we're looking at the last image in a gallery), or, in a gallery of one, just the link to that image file |
|
54 */ |
|
55 $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' ) ) ); |
|
56 foreach ( $attachments as $k => $attachment ) { |
|
57 if ( $attachment->ID == $post->ID ) |
|
58 break; |
|
59 } |
|
60 $k++; |
|
61 // If there is more than 1 attachment in a gallery |
|
62 if ( count( $attachments ) > 1 ) { |
|
63 if ( isset( $attachments[ $k ] ) ) |
|
64 // get the URL of the next image attachment |
|
65 $next_attachment_url = get_attachment_link( $attachments[ $k ]->ID ); |
|
66 else |
|
67 // or get the URL of the first image attachment |
|
68 $next_attachment_url = get_attachment_link( $attachments[ 0 ]->ID ); |
|
69 } else { |
|
70 // or, if there's only 1 image, get the URL of the image |
|
71 $next_attachment_url = wp_get_attachment_url(); |
|
72 } |
|
73 ?> |
|
74 <a href="<?php echo esc_url( $next_attachment_url ); ?>" title="<?php the_title_attribute(); ?>" rel="attachment"><?php |
|
75 $attachment_size = apply_filters( 'twentyeleven_attachment_size', 848 ); |
|
76 echo wp_get_attachment_image( $post->ID, array( $attachment_size, 1024 ) ); // filterable image width with 1024px limit for image height. |
|
77 ?></a> |
|
78 |
|
79 <?php if ( ! empty( $post->post_excerpt ) ) : ?> |
|
80 <div class="entry-caption"> |
|
81 <?php the_excerpt(); ?> |
|
82 </div> |
|
83 <?php endif; ?> |
|
84 </div><!-- .attachment --> |
|
85 |
|
86 </div><!-- .entry-attachment --> |
|
87 |
|
88 <div class="entry-description"> |
|
89 <?php the_content(); ?> |
|
90 <?php wp_link_pages( array( 'before' => '<div class="page-link"><span>' . __( 'Pages:', 'twentyeleven' ) . '</span>', 'after' => '</div>' ) ); ?> |
|
91 </div><!-- .entry-description --> |
|
92 |
|
93 </div><!-- .entry-content --> |
|
94 |
|
95 </article><!-- #post-<?php the_ID(); ?> --> |
|
96 |
|
97 <?php comments_template(); ?> |
|
98 |
|
99 <?php endwhile; // end of the loop. ?> |
|
100 |
|
101 </div><!-- #content --> |
|
102 </div><!-- #primary --> |
|
103 |
|
104 <?php get_footer(); ?> |