PageRenderTime 48ms CodeModel.GetById 23ms RepoModel.GetById 1ms app.codeStats 0ms

/wp-content/themes/twentyeleven/content-image.php

https://github.com/coffeant/wordpress
PHP | 63 lines | 49 code | 5 blank | 9 comment | 6 complexity | 3503b61e890d3e6e4eefa6d018c4b185 MD5 | raw file
Possible License(s): AGPL-1.0, LGPL-2.1
  1. <?php
  2. /**
  3. * The template for displaying posts in the Image Post Format on index and archive pages
  4. *
  5. * Learn more: http://codex.wordpress.org/Post_Formats
  6. *
  7. * @package WordPress
  8. * @subpackage Twenty Eleven
  9. * @since Twenty Eleven 1.0
  10. */
  11. ?>
  12. <article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
  13. <header class="entry-header">
  14. <hgroup>
  15. <h1 class="entry-title"><a href="<?php the_permalink(); ?>" title="<?php printf( esc_attr__( 'Permalink to %s', 'twentyeleven' ), the_title_attribute( 'echo=0' ) ); ?>" rel="bookmark"><?php the_title(); ?></a></h1>
  16. <h2 class="entry-format">Image</h2>
  17. </hgroup>
  18. <?php if ( comments_open() ) : ?>
  19. <div class="comments-link">
  20. <?php comments_popup_link( __( '<span class="leave-reply">Reply</span>', 'twentyeleven' ), __( '1', 'twentyeleven' ), __( '%', 'twentyeleven' ) ); ?>
  21. </div>
  22. <?php endif; ?>
  23. </header><!-- .entry-header -->
  24. <?php if ( is_search() ) : // Only display Excerpts for Search ?>
  25. <div class="entry-summary">
  26. <?php the_excerpt( __( 'Continue reading <span class="meta-nav">&rarr;</span>', 'twentyeleven' ) ); ?>
  27. </div><!-- .entry-summary -->
  28. <?php else : ?>
  29. <div class="entry-content">
  30. <?php the_content( __( 'Continue reading <span class="meta-nav">&rarr;</span>', 'twentyeleven' ) ); ?>
  31. <?php wp_link_pages( array( 'before' => '<div class="page-link">' . __( '<span>Pages:</span>', 'twentyeleven' ), 'after' => '</div>' ) ); ?>
  32. </div><!-- .entry-content -->
  33. <?php endif; ?>
  34. <footer class="entry-meta">
  35. <?php if ( 'post' == $post->post_type ) : // Hide category and tag text for pages on Search ?>
  36. <div class="entry-meta">
  37. <?php
  38. printf( __( '<a href="%1$s" rel="bookmark"><time class="entry-date" datetime="%2$s" pubdate>%3$s</time></a> <span class="sep"> by </span> <span class="author vcard"><a class="url fn n" href="%4$s" title="%5$s">%6$s</a></span>', 'twentyeleven' ),
  39. get_permalink(),
  40. get_the_date( 'c' ),
  41. get_the_date(),
  42. get_author_posts_url( get_the_author_meta( 'ID' ) ),
  43. sprintf( esc_attr__( 'View all posts by %s', 'twentyeleven' ), get_the_author() ),
  44. get_the_author()
  45. );
  46. ?>
  47. </div><!-- .entry-meta -->
  48. <div class="entry-meta">
  49. <span class="cat-links"><span class="entry-utility-prep entry-utility-prep-cat-links"><?php _e( 'Posted in ', 'twentyeleven' ); ?></span><?php the_category( ', ' ); ?></span>
  50. <?php the_tags( '<span class="tag-links"><span class="entry-utility-prep entry-utility-prep-tag-links">' . __( 'Tagged', 'twentyeleven' ) . '</span> ', ', ', '</span>' ); ?>
  51. <?php if ( comments_open() ) : ?>
  52. <span class="comments-link"><?php comments_popup_link( __( '<span class="leave-reply">Leave a reply</span>', 'twentyeleven' ), __( '<b>1</b> Reply', 'twentyeleven' ), __( '<b>%</b> Replies', 'twentyeleven' ) ); ?></span>
  53. <?php endif; ?>
  54. </div><!-- .entry-meta -->
  55. <?php endif; ?>
  56. <?php edit_post_link( __( 'Edit', 'twentyeleven' ), '<span class="edit-link">', '</span>' ); ?>
  57. </footer><!-- #entry-meta -->
  58. </article><!-- #post-<?php the_ID(); ?> -->