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

/image.php

https://github.com/petergibbons/OpenCounterWP
PHP | 69 lines | 40 code | 21 blank | 8 comment | 8 complexity | a2301d460df5542632c0c7b39575b080 MD5 | raw file
  1. <?php
  2. /**
  3. * @package WordPress
  4. * @subpackage Default_Theme
  5. */
  6. get_header();
  7. ?>
  8. <div id="content" class="widecolumn">
  9. <?php if (have_posts()) : while (have_posts()) : the_post(); ?>
  10. <div class="post" id="post-<?php the_ID(); ?>">
  11. <h2><a href="<?php echo get_permalink($post->post_parent); ?>" rev="attachment"><?php echo get_the_title($post->post_parent); ?></a> &raquo; <?php the_title(); ?></h2>
  12. <div class="entry">
  13. <p class="attachment"><a href="<?php echo wp_get_attachment_url($post->ID); ?>"><?php echo wp_get_attachment_image( $post->ID, 'medium' ); ?></a></p>
  14. <div class="caption"><?php if ( !empty($post->post_excerpt) ) the_excerpt(); // this is the "caption" ?></div>
  15. <?php the_content('<p class="serif">' . __('Read the rest of this entry &raquo;', 'kubrick') . '</p>'); ?>
  16. <div class="navigation">
  17. <div class="alignleft"><?php previous_image_link() ?></div>
  18. <div class="alignright"><?php next_image_link() ?></div>
  19. </div>
  20. <br class="clear" />
  21. <p class="postmetadata alt">
  22. <small>
  23. <?php printf(__('This entry was posted on %1$s at %2$s and is filed under %3$s.', 'kubrick'), get_the_time(__('l, F jS, Y', 'kubrick')), get_the_time(), get_the_category_list(', ')); ?>
  24. <?php the_taxonomies(); ?>
  25. <?php printf(__("You can follow any responses to this entry through the <a href='%s'>RSS 2.0</a> feed.", "kubrick"), get_post_comments_feed_link()); ?>
  26. <?php if ( comments_open() && pings_open() ) {
  27. // Both Comments and Pings are open ?>
  28. <?php printf(__('You can <a href="#respond">leave a response</a>, or <a href="%s" rel="trackback">trackback</a> from your own site.', 'kubrick'), get_trackback_url()); ?>
  29. <?php } elseif ( !comments_open() && pings_open() ) {
  30. // Only Pings are Open ?>
  31. <?php printf(__('Responses are currently closed, but you can <a href="%s" rel="trackback">trackback</a> from your own site.', 'kubrick'), get_trackback_url()); ?>
  32. <?php } elseif ( comments_open() && !pings_open() ) {
  33. // Comments are open, Pings are not ?>
  34. <?php _e('You can skip to the end and leave a response. Pinging is currently not allowed.', 'kubrick'); ?>
  35. <?php } elseif ( !comments_open() && !pings_open() ) {
  36. // Neither Comments, nor Pings are open ?>
  37. <?php _e('Both comments and pings are currently closed.', 'kubrick'); ?>
  38. <?php } edit_post_link('Edit this entry.','',''); ?>
  39. </small>
  40. </p>
  41. </div>
  42. </div>
  43. <?php comments_template(); ?>
  44. <?php endwhile; else: ?>
  45. <p><?php _e('Sorry, no posts matched your criteria.', 'kubrick'); ?></p>
  46. <?php endif; ?>
  47. </div>
  48. <?php get_footer(); ?>