]> scripts.mit.edu Git - autoinstalls/wordpress.git/blobdiff - wp-content/themes/twentytwelve/image.php
Wordpress 3.7
[autoinstalls/wordpress.git] / wp-content / themes / twentytwelve / image.php
index b2fcb428ac5ce8d8253e86041f4103541102e0bc..285e453c71017e097931b8abac93f17576546d1b 100644 (file)
@@ -1,8 +1,8 @@
 <?php
 /**
 <?php
 /**
- * The template for displaying image attachments.
+ * The template for displaying image attachments
  *
  *
- * Learn more: http://codex.wordpress.org/Template_Hierarchy
+ * @link http://codex.wordpress.org/Template_Hierarchy
  *
  * @package WordPress
  * @subpackage Twenty_Twelve
  *
  * @package WordPress
  * @subpackage Twenty_Twelve
@@ -48,7 +48,7 @@ get_header(); ?>
                                                <div class="entry-attachment">
                                                        <div class="attachment">
 <?php
                                                <div class="entry-attachment">
                                                        <div class="attachment">
 <?php
-/**
+/*
  * 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,
  * 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
  */
  * 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,
  * 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
  */
@@ -74,6 +74,16 @@ else :
 endif;
 ?>
                                                                <a href="<?php echo esc_url( $next_attachment_url ); ?>" title="<?php the_title_attribute(); ?>" rel="attachment"><?php
 endif;
 ?>
                                                                <a href="<?php echo esc_url( $next_attachment_url ); ?>" title="<?php the_title_attribute(); ?>" rel="attachment"><?php
+                                                               /**
+                                                                * Filter the image attachment size to use.
+                                                                *
+                                                                * @since Twenty Twelve 1.0
+                                                                *
+                                                                * @param array $size {
+                                                                *     @type int The attachment height in pixels.
+                                                                *     @type int The attachment width in pixels.
+                                                                * }
+                                                                */
                                                                $attachment_size = apply_filters( 'twentytwelve_attachment_size', array( 960, 960 ) );
                                                                echo wp_get_attachment_image( $post->ID, $attachment_size );
                                                                ?></a>
                                                                $attachment_size = apply_filters( 'twentytwelve_attachment_size', array( 960, 960 ) );
                                                                echo wp_get_attachment_image( $post->ID, $attachment_size );
                                                                ?></a>