PageRenderTime 43ms CodeModel.GetById 17ms RepoModel.GetById 0ms app.codeStats 1ms

/msw/dev/wp-content/themes/twentyten/attachment.php

https://github.com/chrissiebrodigan/USC
PHP | 108 lines | 86 code | 15 blank | 7 comment | 12 complexity | e3ea5d8b8ab62995380e2d637b3d8ffc MD5 | raw file
  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. if ( wp_attachment_is_image() ) {
  32. $size = getimagesize( wp_get_attachment_url() );
  33. printf( __( ' at <a href="%1$s" title="Link to full-size image">%2$s &times; %3$s</a>', 'twentyten'),
  34. wp_get_attachment_url(),
  35. $size[0],
  36. $size[1]
  37. );
  38. }
  39. ?>
  40. <?php edit_post_link( __( 'Edit', 'twentyten' ), '<span class="meta-sep">|</span> <span class="edit-link">', '</span>' ); ?>
  41. </div><!-- .entry-meta -->
  42. <div class="entry-content">
  43. <div class="entry-attachment">
  44. <?php if ( wp_attachment_is_image() ) : ?>
  45. <p class="attachment"><a href="<?php echo twentyten_get_next_attachment_url(); ?>" title="<?php echo esc_attr( get_the_title() ); ?>" rel="attachment"><?php
  46. $attachment_size = apply_filters( 'twentyten_attachment_size', 900 );
  47. echo wp_get_attachment_image( $post->ID, array( $attachment_size, 9999 ) ); // filterable image width with, essentially, no limit for image height.
  48. ?></a></p>
  49. <div id="nav-below" class="navigation">
  50. <div class="nav-previous"><?php previous_image_link( false ); ?></div>
  51. <div class="nav-next"><?php next_image_link( false ); ?></div>
  52. </div><!-- #nav-below -->
  53. <?php else : ?>
  54. <a href="<?php echo wp_get_attachment_url(); ?>" title="<?php echo esc_attr( get_the_title() ); ?>" rel="attachment"><?php echo basename( get_permalink() ); ?></a>
  55. <?php endif; ?>
  56. </div>
  57. <div class="entry-caption"><?php if ( ! empty( $post->post_excerpt ) ) the_excerpt(); ?></div>
  58. <?php the_content( __( 'Continue reading <span class="meta-nav">&rarr;</span>', 'twentyten' ) ); ?>
  59. <?php wp_link_pages( array( 'before' => '<div class="page-link">' . __( 'Pages:', 'twentyten' ), 'after' => '</div>' ) ); ?>
  60. </div><!-- .entry-content -->
  61. <div class="entry-utility">
  62. <?php
  63. $tag_list = get_the_tag_list();
  64. if ( '' != $tag_list ) {
  65. $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>.', 'twentyten' );
  66. } else {
  67. $utility_text = __( 'This entry was posted in %1$s. Bookmark the <a href="%3$s" title="Permalink to %4$s" rel="bookmark">permalink</a>.', 'twentyten' );
  68. }
  69. printf(
  70. $utility_text,
  71. get_the_category_list( ', ' ),
  72. $tag_list,
  73. get_permalink(),
  74. the_title_attribute( 'echo=0' ),
  75. get_post_comments_feed_link()
  76. );
  77. ?>
  78. <?php if ( comments_open() && pings_open() ) : // Comments and trackbacks open ?>
  79. <?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() ); ?>
  80. <?php elseif ( ! comments_open() && pings_open() ) : // Only trackbacks open ?>
  81. <?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() ); ?>
  82. <?php elseif ( comments_open() && ! pings_open() ) : // Only comments open ?>
  83. <?php _e( 'Trackbacks are closed, but you can <a class="comment-link" href="#respond" title="Post a comment">post a comment</a>.', 'twentyten' ); ?>
  84. <?php elseif ( ! comments_open() && ! pings_open() ) : // Comments and trackbacks closed ?>
  85. <?php _e( 'Both comments and trackbacks are currently closed.', 'twentyten' ); ?>
  86. <?php endif; ?>
  87. <?php edit_post_link( __( 'Edit', 'twentyten' ), ' <span class="edit-link">', '</span>' ); ?>
  88. </div><!-- .entry-utility -->
  89. </div><!-- #post-<?php the_ID(); ?> -->
  90. <?php comments_template(); ?>
  91. </div><!-- #content -->
  92. </div><!-- #container -->
  93. <?php get_footer(); ?>