PageRenderTime 45ms CodeModel.GetById 21ms RepoModel.GetById 1ms app.codeStats 0ms

/blog/wp-content/themes/clean-home/image.php

https://bitbucket.org/sergiohzlz/reportaprod
PHP | 96 lines | 71 code | 13 blank | 12 comment | 11 complexity | feed83d37facf38cfe27966ae6cd1b1f MD5 | raw file
Possible License(s): GPL-2.0, GPL-3.0, AGPL-1.0, LGPL-2.1
  1. <?php
  2. /**
  3. * @package WordPress
  4. * @subpackage Clean Home
  5. */
  6. ?>
  7. <?php get_header(); ?>
  8. <div class="content">
  9. <?php if ( have_posts() ) : ?>
  10. <?php while ( have_posts() ) : the_post(); ?>
  11. <div <?php post_class(); ?> id="post-<?php the_ID(); ?>">
  12. <h1><?php the_title(); ?></h1>
  13. <small class="post-meta">
  14. <?php
  15. if ( ! empty( $post->post_parent ) ) :
  16. $metadata = wp_get_attachment_metadata();
  17. printf( __( '<b>Posted:</b> %1$s | <b>Dimensions:</b> <a href="%2$s" title="Link to full-size image">%3$s &times; %4$s</a> | <b>Gallery:</b> <a href="%5$s" title="Return to %6$s" rel="gallery">%6$s</a>', 'cleanhome' ),
  18. esc_attr( get_the_time() ),
  19. wp_get_attachment_url(),
  20. $metadata['width'],
  21. $metadata['height'],
  22. get_permalink( $post->post_parent ),
  23. get_the_title( $post->post_parent )
  24. );
  25. ?> | <?php comments_popup_link( __( 'Leave a comment &#187;', 'cleanhome' ), __( '<strong>1</strong> Comment &#187;', 'cleanhome' ), __( '<strong>%</strong> Comments &#187;', 'cleanhome' ) ); ?>
  26. <?php
  27. else :
  28. $metadata = wp_get_attachment_metadata();
  29. printf( __( '<b>Dimensions:</b> <a href="%1$s" title="Link to full-size image">%2$s &times; %3$s</a>', 'cleanhome' ),
  30. wp_get_attachment_url(),
  31. $metadata['width'],
  32. $metadata['height']
  33. );
  34. ?> | <?php comments_popup_link( __( 'Leave a comment &#187;', 'cleanhome' ), __( '<strong>1</strong> Comment &#187;', 'cleanhome' ), __( '<strong>%</strong> Comments &#187;', 'cleanhome' ) ); ?>
  35. <?php endif; ?>
  36. </small>
  37. <?php
  38. /**
  39. * 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,
  40. * 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
  41. */
  42. $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' ) ) );
  43. foreach ( $attachments as $k => $attachment ) {
  44. if ( $attachment->ID == $post->ID )
  45. break;
  46. }
  47. $k++;
  48. // If there is more than 1 attachment in a gallery
  49. if ( count( $attachments ) > 1 ) {
  50. if ( isset( $attachments[ $k ] ) )
  51. // get the URL of the next image attachment
  52. $next_attachment_url = get_attachment_link( $attachments[ $k ]->ID );
  53. else
  54. // or get the URL of the first image attachment
  55. $next_attachment_url = get_attachment_link( $attachments[ 0 ]->ID );
  56. } else {
  57. // or, if there's only 1 image, get the URL of the image
  58. $next_attachment_url = wp_get_attachment_url();
  59. }
  60. ?>
  61. <a href="<?php echo $next_attachment_url; ?>" title="<?php the_title_attribute(); ?>" rel="attachment"><?php
  62. $attachment_size = apply_filters( 'theme_attachment_size', 900 );
  63. echo wp_get_attachment_image( $post->ID, array( $attachment_size, $attachment_size ) );
  64. ?></a>
  65. <?php the_content( 'Read the rest of this entry &raquo;' ); ?>
  66. <?php wp_link_pages( array( 'before' => '<p>Page: ', 'after' => '</p>', 'next_or_number' => 'number' ) ); ?>
  67. <hr/>
  68. </div>
  69. <?php endwhile; ?>
  70. <div class="navigation">
  71. <div class="alignleft"><?php previous_image_link(); ?></div>
  72. <div class="alignright"><?php next_image_link(); ?></div>
  73. </div>
  74. <?php comments_template(); ?>
  75. <?php else : ?>
  76. <h2 class="center"><?php _e( 'Not found', 'cleanhome' ); ?></h2>
  77. <p class="center"><?php _e( "Sorry, but you are looking for something that isn't here.", 'cleanhome' ); ?></p>
  78. <?php endif; ?>
  79. </div>
  80. <?php get_footer(); ?>