PageRenderTime 40ms CodeModel.GetById 13ms RepoModel.GetById 0ms app.codeStats 0ms

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

https://bitbucket.org/julianelve/vendor-wordpress
PHP | 70 lines | 54 code | 5 blank | 11 comment | 5 complexity | 2c30142e63528e3af08bf7caf388414c MD5 | raw file
Possible License(s): AGPL-1.0, LGPL-2.1, GPL-2.0
  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( 'indexed' ); ?>>
  13. <header class="entry-header">
  14. <hgroup>
  15. <h2 class="entry-title"><a href="<?php the_permalink(); ?>" title="<?php echo esc_attr( sprintf( __( 'Permalink to %s', 'twentyeleven' ), the_title_attribute( 'echo=0' ) ) ); ?>" rel="bookmark"><?php the_title(); ?></a></h2>
  16. <h3 class="entry-format"><?php _e( 'Image', 'twentyeleven' ); ?></h3>
  17. </hgroup>
  18. <?php if ( comments_open() && ! post_password_required() ) : ?>
  19. <div class="comments-link">
  20. <?php comments_popup_link( '<span class="leave-reply">' . __( "Reply", 'twentyeleven' ) . '</span>', _x( '1', 'comments number', 'twentyeleven' ), _x( '%', 'comments number', 'twentyeleven' ) ); ?>
  21. </div>
  22. <?php endif; ?>
  23. </header><!-- .entry-header -->
  24. <div class="entry-content">
  25. <?php the_content( __( 'Continue reading <span class="meta-nav">&rarr;</span>', 'twentyeleven' ) ); ?>
  26. <?php wp_link_pages( array( 'before' => '<div class="page-link"><span>' . __( 'Pages:', 'twentyeleven' ) . '</span>', 'after' => '</div>' ) ); ?>
  27. </div><!-- .entry-content -->
  28. <footer class="entry-meta">
  29. <div class="entry-meta">
  30. <?php
  31. printf( __( '<a href="%1$s" rel="bookmark"><time class="entry-date" datetime="%2$s">%3$s</time></a><span class="by-author"> <span class="sep"> by </span> <span class="author vcard"><a class="url fn n" href="%4$s" title="%5$s" rel="author">%6$s</a></span></span>', 'twentyeleven' ),
  32. esc_url( get_permalink() ),
  33. get_the_date( 'c' ),
  34. get_the_date(),
  35. esc_url( get_author_posts_url( get_the_author_meta( 'ID' ) ) ),
  36. esc_attr( sprintf( __( 'View all posts by %s', 'twentyeleven' ), get_the_author() ) ),
  37. get_the_author()
  38. );
  39. ?>
  40. </div><!-- .entry-meta -->
  41. <div class="entry-meta">
  42. <?php
  43. /* translators: used between list items, there is a space after the comma */
  44. $categories_list = get_the_category_list( __( ', ', 'twentyeleven' ) );
  45. if ( $categories_list ):
  46. ?>
  47. <span class="cat-links">
  48. <?php printf( __( '<span class="%1$s">Posted in</span> %2$s', 'twentyeleven' ), 'entry-utility-prep entry-utility-prep-cat-links', $categories_list ); ?>
  49. </span>
  50. <?php endif; // End if categories ?>
  51. <?php
  52. /* translators: used between list items, there is a space after the comma */
  53. $tags_list = get_the_tag_list( '', __( ', ', 'twentyeleven' ) );
  54. if ( $tags_list ): ?>
  55. <span class="tag-links">
  56. <?php printf( __( '<span class="%1$s">Tagged</span> %2$s', 'twentyeleven' ), 'entry-utility-prep entry-utility-prep-tag-links', $tags_list ); ?>
  57. </span>
  58. <?php endif; // End if $tags_list ?>
  59. <?php if ( comments_open() ) : ?>
  60. <span class="comments-link"><?php comments_popup_link( '<span class="leave-reply">' . __( 'Leave a reply', 'twentyeleven' ) . '</span>', __( '<b>1</b> Reply', 'twentyeleven' ), __( '<b>%</b> Replies', 'twentyeleven' ) ); ?></span>
  61. <?php endif; // End if comments_open() ?>
  62. </div><!-- .entry-meta -->
  63. <?php edit_post_link( __( 'Edit', 'twentyeleven' ), '<span class="edit-link">', '</span>' ); ?>
  64. </footer><!-- .entry-meta -->
  65. </article><!-- #post-<?php the_ID(); ?> -->