]> scripts.mit.edu Git - autoinstalls/wordpress.git/blob - wp-content/themes/twentyeleven/image.php
Wordpress 3.2
[autoinstalls/wordpress.git] / wp-content / themes / twentyeleven / image.php
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 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, __( '&larr; Previous' , 'twentyeleven' ) ); ?></span>
20                                 <span class="nav-next"><?php next_image_link( false, __( 'Next &rarr;' , '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 &times; %5$s</a> in <a href="%6$s" title="Return to %7$s" rel="gallery">%7$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                                                                         get_the_title( $post->post_parent )
38                                                                 );
39                                                         ?>
40                                                         <?php edit_post_link( __( 'Edit', 'twentyeleven' ), '<span class="edit-link">', '</span>' ); ?>
41                                                 </div><!-- .entry-meta -->
42
43                                         </header><!-- .entry-header -->
44
45                                         <div class="entry-content">
46
47                                                 <div class="entry-attachment">
48                                                         <div class="attachment">
49 <?php
50         /**
51          * 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,
52          * 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
53          */
54         $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' ) ) );
55         foreach ( $attachments as $k => $attachment ) {
56                 if ( $attachment->ID == $post->ID )
57                         break;
58         }
59         $k++;
60         // If there is more than 1 attachment in a gallery
61         if ( count( $attachments ) > 1 ) {
62                 if ( isset( $attachments[ $k ] ) )
63                         // get the URL of the next image attachment
64                         $next_attachment_url = get_attachment_link( $attachments[ $k ]->ID );
65                 else
66                         // or get the URL of the first image attachment
67                         $next_attachment_url = get_attachment_link( $attachments[ 0 ]->ID );
68         } else {
69                 // or, if there's only 1 image, get the URL of the image
70                 $next_attachment_url = wp_get_attachment_url();
71         }
72 ?>
73                                                                 <a href="<?php echo esc_url( $next_attachment_url ); ?>" title="<?php echo esc_attr( get_the_title() ); ?>" rel="attachment"><?php
74                                                                 $attachment_size = apply_filters( 'twentyeleven_attachment_size', 848 );
75                                                                 echo wp_get_attachment_image( $post->ID, array( $attachment_size, 1024 ) ); // filterable image width with 1024px limit for image height.
76                                                                 ?></a>
77
78                                                                 <?php if ( ! empty( $post->post_excerpt ) ) : ?>
79                                                                 <div class="entry-caption">
80                                                                         <?php the_excerpt(); ?>
81                                                                 </div>
82                                                                 <?php endif; ?>
83                                                         </div><!-- .attachment -->
84
85                                                 </div><!-- .entry-attachment -->
86
87                                                 <div class="entry-description">
88                                                         <?php the_content(); ?>
89                                                         <?php wp_link_pages( array( 'before' => '<div class="page-link"><span>' . __( 'Pages:', 'twentyeleven' ) . '</span>', 'after' => '</div>' ) ); ?>
90                                                 </div><!-- .entry-description -->
91
92                                         </div><!-- .entry-content -->
93
94                                 </article><!-- #post-<?php the_ID(); ?> -->
95
96                                 <?php comments_template(); ?>
97
98                         </div><!-- #content -->
99                 </div><!-- #primary -->
100
101 <?php get_footer(); ?>