attachment.php 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  1. <?php
  2. /**
  3. * The template used to display attachments.
  4. *
  5. * @package WordPress
  6. * @subpackage Twenty Ten
  7. * @since 3.0.0
  8. */
  9. ?>
  10. <?php get_header(); ?>
  11. <div id="container">
  12. <div id="content">
  13. <?php the_post(); ?>
  14. <p class="page-title"><a href="<?php echo get_permalink( $post->post_parent ); ?>" title="<?php printf( esc_attr__( 'Return to %s', 'twentyten' ), esc_html( get_the_title( $post->post_parent ), 1 ) ); ?>" rel="gallery">&larr; <?php echo get_the_title( $post->post_parent ); ?></a></p>
  15. <div id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
  16. <h2 class="entry-title"><?php the_title(); ?></h2>
  17. <div class="entry-meta">
  18. <?php
  19. printf(__( '<span class="meta-prep meta-prep-author"> By </span> <span class="author vcard"><a class="url fn n" href="%1$s" title="%2$s">%3$s</a></span>', 'twentyten'),
  20. get_author_posts_url( get_the_author_meta( 'ID' ) ),
  21. sprintf( esc_attr__( 'View all posts by %s', 'twentyten' ), get_the_author() ),
  22. get_the_author()
  23. );
  24. ?>
  25. <span class="meta-sep"> | </span>
  26. <?php
  27. 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>', 'twentyten'),
  28. esc_attr( get_the_time() ),
  29. get_the_date()
  30. );
  31. ?>
  32. <?php edit_post_link( __( 'Edit', 'twentyten' ), "<span class=\"meta-sep\">|</span>\n\t\t\t\t\t\t<span class=\"edit-link\">", "</span>\n\t\t\t\t\t" ); ?>
  33. </div><!-- .entry-meta -->
  34. <div class="entry-content">
  35. <div class="entry-attachment">
  36. <?php if ( wp_attachment_is_image() ) : ?>
  37. <p class="attachment"><a href="<?php echo wp_get_attachment_url(); ?>" title="<?php echo esc_attr( get_the_title() ); ?>" rel="attachment"><?php
  38. echo wp_get_attachment_image( $post->ID, array( $content_width, $content_width ) ); // max $content_width wide or high.
  39. ?></a></p>
  40. <div id="nav-below" class="navigation">
  41. <div class="nav-previous"><?php previous_image_link( false ); ?></div>
  42. <div class="nav-next"><?php next_image_link( false ); ?></div>
  43. </div><!-- #nav-below -->
  44. <?php else : ?>
  45. <a href="<?php echo wp_get_attachment_url(); ?>" title="<?php echo esc_attr( get_the_title() ); ?>" rel="attachment"><?php echo basename( get_permalink() ); ?></a>
  46. <?php endif; ?>
  47. </div>
  48. <div class="entry-caption"><?php if ( ! empty( $post->post_excerpt ) ) the_excerpt(); ?></div>
  49. <?php the_content( __( 'Continue reading <span class="meta-nav">&rarr;</span>', 'twentyten' ) ); ?>
  50. <?php wp_link_pages( array( 'before' => '<div class="page-link">' . __( 'Pages:', 'twentyten' ), 'after' => '</div>' ) ); ?>
  51. </div><!-- .entry-content -->
  52. <div class="entry-utility">
  53. <?php
  54. $tag_list = get_the_tag_list();
  55. if ( '' != $tag_list ) {
  56. $utility_text = __( 'This entry was posted in %1$s and tagged %2$s. Bookmark the <a href="%3$s" title="Permalink to %4$s" rel="bookmark">permalink</a>. Follow any comments here with the <a href="%5$s" title="Comments RSS to %4$s" rel="alternate" type="application/rss+xml">RSS feed for this post</a>.', 'twentyten' );
  57. } else {
  58. $utility_text = __( 'This entry was posted in %1$s. Bookmark the <a href="%3$s" title="Permalink to %4$s" rel="bookmark">permalink</a>. Follow any comments here with the <a href="%5$s" title="Comments RSS to %4$s" rel="alternate" type="application/rss+xml">RSS feed for this post</a>.', 'twentyten' );
  59. }
  60. printf(
  61. $utility_text,
  62. get_the_category_list( ', ' ),
  63. $tag_list,
  64. get_permalink(),
  65. the_title_attribute( 'echo=0' ),
  66. get_post_comments_feed_link()
  67. );
  68. ?>
  69. <?php if ( comments_open() && pings_open() ) : // Comments and trackbacks open ?>
  70. <?php printf( __( '<a class="comment-link" href="#respond" title="Post a comment">Post a comment</a> or leave a trackback: <a class="trackback-link" href="%s" title="Trackback URL for your post" rel="trackback">Trackback URL</a>.', 'twentyten' ), get_trackback_url() ); ?>
  71. <?php elseif ( ! comments_open() && pings_open() ) : // Only trackbacks open ?>
  72. <?php printf( __( 'Comments are closed, but you can leave a trackback: <a class="trackback-link" href="%s" title="Trackback URL for your post" rel="trackback">Trackback URL</a>.', 'twentyten' ), get_trackback_url() ); ?>
  73. <?php elseif ( comments_open() && ! pings_open() ) : // Only comments open ?>
  74. <?php _e( 'Trackbacks are closed, but you can <a class="comment-link" href="#respond" title="Post a comment">post a comment</a>.', 'twentyten' ); ?>
  75. <?php elseif ( ! comments_open() && ! pings_open() ) : // Comments and trackbacks closed ?>
  76. <?php _e( 'Both comments and trackbacks are currently closed.', 'twentyten' ); ?>
  77. <?php endif; ?>
  78. <?php edit_post_link( __( 'Edit', 'twentyten' ), "\n\t\t\t\t\t<span class=\"edit-link\">", "</span>" ); ?>
  79. </div><!-- .entry-utility -->
  80. </div><!-- #post-<?php the_ID(); ?> -->
  81. <?php comments_template(); ?>
  82. </div><!-- #content -->
  83. </div><!-- #container -->
  84. <?php get_sidebar(); ?>
  85. <?php get_footer(); ?>