PageRenderTime 42ms CodeModel.GetById 15ms RepoModel.GetById 0ms app.codeStats 0ms

/public/frontend/wp-content/themes/twentyten/loop-attachment.php

https://bitbucket.org/floppyxyz/musical
PHP | 117 lines | 87 code | 11 blank | 19 comment | 12 complexity | 33512bd42e322ed22c08e9f37380fa6d MD5 | raw file
Possible License(s): GPL-2.0, AGPL-1.0, LGPL-2.1
  1. <?php
  2. /**
  3. * The loop that displays an attachment.
  4. *
  5. * The loop displays the posts and the post content. See
  6. * http://codex.wordpress.org/The_Loop to understand it and
  7. * http://codex.wordpress.org/Template_Tags to understand
  8. * the tags used in it.
  9. *
  10. * This can be overridden in child themes with loop-attachment.php.
  11. *
  12. * @package WordPress
  13. * @subpackage Twenty_Ten
  14. * @since Twenty Ten 1.2
  15. */
  16. ?>
  17. <?php if ( have_posts() ) while ( have_posts() ) : the_post(); ?>
  18. <?php if ( ! empty( $post->post_parent ) ) : ?>
  19. <p class="page-title"><a href="<?php echo get_permalink( $post->post_parent ); ?>" title="<?php echo esc_attr( sprintf( __( 'Return to %s', 'twentyten' ), strip_tags( get_the_title( $post->post_parent ) ) ) ); ?>" rel="gallery"><?php
  20. /* translators: %s - title of parent post */
  21. printf( __( '<span class="meta-nav">&larr;</span> %s', 'twentyten' ), get_the_title( $post->post_parent ) );
  22. ?></a></p>
  23. <?php endif; ?>
  24. <div id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
  25. <h2 class="entry-title"><?php the_title(); ?></h2>
  26. <div class="entry-meta">
  27. <?php
  28. printf( __( '<span class="%1$s">By</span> %2$s', 'twentyten' ),
  29. 'meta-prep meta-prep-author',
  30. sprintf( '<span class="author vcard"><a class="url fn n" href="%1$s" title="%2$s" rel="author">%3$s</a></span>',
  31. get_author_posts_url( get_the_author_meta( 'ID' ) ),
  32. esc_attr( sprintf( __( 'View all posts by %s', 'twentyten' ), get_the_author() ) ),
  33. get_the_author()
  34. )
  35. );
  36. ?>
  37. <span class="meta-sep">|</span>
  38. <?php
  39. printf( __( '<span class="%1$s">Published</span> %2$s', 'twentyten' ),
  40. 'meta-prep meta-prep-entry-date',
  41. sprintf( '<span class="entry-date"><abbr class="published" title="%1$s">%2$s</abbr></span>',
  42. esc_attr( get_the_time() ),
  43. get_the_date()
  44. )
  45. );
  46. if ( wp_attachment_is_image() ) {
  47. echo ' <span class="meta-sep">|</span> ';
  48. $metadata = wp_get_attachment_metadata();
  49. printf( __( 'Full size is %s pixels', 'twentyten' ),
  50. sprintf( '<a href="%1$s" title="%2$s">%3$s &times; %4$s</a>',
  51. wp_get_attachment_url(),
  52. esc_attr( __( 'Link to full-size image', 'twentyten' ) ),
  53. $metadata['width'],
  54. $metadata['height']
  55. )
  56. );
  57. }
  58. ?>
  59. <?php edit_post_link( __( 'Edit', 'twentyten' ), '<span class="meta-sep">|</span> <span class="edit-link">', '</span>' ); ?>
  60. </div><!-- .entry-meta -->
  61. <div class="entry-content">
  62. <div class="entry-attachment">
  63. <?php if ( wp_attachment_is_image() ) :
  64. $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' ) ) );
  65. foreach ( $attachments as $k => $attachment ) {
  66. if ( $attachment->ID == $post->ID )
  67. break;
  68. }
  69. $k++;
  70. // If there is more than 1 image attachment in a gallery
  71. if ( count( $attachments ) > 1 ) {
  72. if ( isset( $attachments[ $k ] ) )
  73. // get the URL of the next image attachment
  74. $next_attachment_url = get_attachment_link( $attachments[ $k ]->ID );
  75. else
  76. // or get the URL of the first image attachment
  77. $next_attachment_url = get_attachment_link( $attachments[ 0 ]->ID );
  78. } else {
  79. // or, if there's only 1 image attachment, get the URL of the image
  80. $next_attachment_url = wp_get_attachment_url();
  81. }
  82. ?>
  83. <p class="attachment"><a href="<?php echo $next_attachment_url; ?>" title="<?php the_title_attribute(); ?>" rel="attachment"><?php
  84. $attachment_width = apply_filters( 'twentyten_attachment_size', 900 );
  85. $attachment_height = apply_filters( 'twentyten_attachment_height', 900 );
  86. echo wp_get_attachment_image( $post->ID, array( $attachment_width, $attachment_height ) ); // filterable image width with, essentially, no limit for image height.
  87. ?></a></p>
  88. <div id="nav-below" class="navigation">
  89. <div class="nav-previous"><?php previous_image_link( false ); ?></div>
  90. <div class="nav-next"><?php next_image_link( false ); ?></div>
  91. </div><!-- #nav-below -->
  92. <?php else : ?>
  93. <a href="<?php echo wp_get_attachment_url(); ?>" title="<?php the_title_attribute(); ?>" rel="attachment"><?php echo basename( get_permalink() ); ?></a>
  94. <?php endif; ?>
  95. </div><!-- .entry-attachment -->
  96. <div class="entry-caption"><?php if ( !empty( $post->post_excerpt ) ) the_excerpt(); ?></div>
  97. <?php the_content( __( 'Continue reading <span class="meta-nav">&rarr;</span>', 'twentyten' ) ); ?>
  98. <?php wp_link_pages( array( 'before' => '<div class="page-link">' . __( 'Pages:', 'twentyten' ), 'after' => '</div>' ) ); ?>
  99. </div><!-- .entry-content -->
  100. <div class="entry-utility">
  101. <?php twentyten_posted_in(); ?>
  102. <?php edit_post_link( __( 'Edit', 'twentyten' ), ' <span class="edit-link">', '</span>' ); ?>
  103. </div><!-- .entry-utility -->
  104. </div><!-- #post-## -->
  105. <?php comments_template(); ?>
  106. <?php endwhile; // end of the loop. ?>