From 8e2064bbd878ac93438a6616cbf4af21a0f41edd Mon Sep 17 00:00:00 2001 From: Luke Shumaker Date: Sun, 27 Nov 2011 12:23:12 -0500 Subject: The North Star 2010-2011 theme, a fork of Twenty Ten I'm not planning on maintaining this, I just figured I'd put it in git in case I ever want it. This has already been cleaned up a lot. I might one day do the work to make it a proper child theme (it was forked too many versions ago for it to be clean), but probably not. --- attachment.php | 117 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 117 insertions(+) create mode 100644 attachment.php (limited to 'attachment.php') diff --git a/attachment.php b/attachment.php new file mode 100644 index 0000000..92b8afd --- /dev/null +++ b/attachment.php @@ -0,0 +1,117 @@ + + +
+ + + + post_parent ) ) : ?> +

← %s', 'twentyten' ), get_the_title( $post->post_parent ) ); + ?>

+ + +
> +

+ + + +
+
+ $post->post_parent, 'post_status' => 'inherit', 'post_type' => 'attachment', 'post_mime_type' => 'image', 'order' => 'ASC', 'orderby' => 'menu_order ID' ) ) ); + foreach ( $attachments as $k => $attachment ) { + if ( $attachment->ID == $post->ID ) + break; + } + $k++; + // If there is more than 1 image attachment in a gallery + if ( count( $attachments ) > 1 ) { + if ( isset( $attachments[ $k ] ) ) + // get the URL of the next image attachment + $next_attachment_url = get_attachment_link( $attachments[ $k ]->ID ); + else + // or get the URL of the first image attachment + $next_attachment_url = get_attachment_link( $attachments[ 0 ]->ID ); + } else { + // or, if there's only 1 image attachment, get the URL of the image + $next_attachment_url = wp_get_attachment_url(); + } +?> +

ID, array( $attachment_size, 9999 ) ); // filterable image width with, essentially, no limit for image height. + ?>

+ + + + + +
+
post_excerpt ) ) the_excerpt(); ?>
+ +→', 'twentyten' ) ); ?> + '' ) ); ?> + +
+ +
+ + ', '' ); ?> +
+
+ + + + + +
+ + + -- cgit v1.2.3