PageRenderTime 42ms CodeModel.GetById 15ms RepoModel.GetById 0ms app.codeStats 0ms

/content-image.php

https://github.com/lecar-red/3ring-wordpress
PHP | 32 lines | 23 code | 5 blank | 4 comment | 2 complexity | 76299bfb5abe522d57e328249104fc96 MD5 | raw file
Possible License(s): AGPL-1.0
  1. <?php
  2. /**
  3. * @package WordPress
  4. * @subpackage Yoko
  5. */
  6. ?>
  7. <article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
  8. <div class="entry-post-format">
  9. <header class="entry-header">
  10. <h2 class="entry-title"><a href="<?php the_permalink(); ?>" title="<?php printf( esc_attr__( 'Permalink to %s', 'yoko' ), the_title_attribute( 'echo=0' ) ); ?>" rel="bookmark"><?php the_title(); ?></a></h2>
  11. <p><?php echo get_the_date(); ?> <?php _e( 'by', 'yoko' ); ?> <?php the_author() ?> | <?php comments_popup_link( __( '0 comments', 'yoko' ), __( '1 Comment', 'yoko' ), __( '% Comments', 'yoko' ) ); ?></p>
  12. </header><!-- end entry-header -->
  13. <?php the_content( __( 'Continue Reading &rarr;', 'yoko' ) ); ?>
  14. <?php wp_link_pages( array( 'before' => '<div class="page-link">' . __( 'Pages:', 'yoko' ), 'after' => '</div>' ) ); ?>
  15. <footer class="entry-meta">
  16. <p><?php if ( count( get_the_category() ) ) : ?>
  17. <?php printf( __( 'Categories: %2$s', 'yoko' ), 'entry-utility-prep entry-utility-prep-cat-links', get_the_category_list( ', ' ) ); ?> |
  18. <?php endif; ?>
  19. <?php $tags_list = get_the_tag_list( '', ', ' );
  20. if ( $tags_list ): ?>
  21. <?php printf( __( 'Tags: %2$s', 'yoko' ), 'entry-utility-prep entry-utility-prep-tag-links', $tags_list ); ?> |
  22. <?php endif; ?>
  23. <a href="<?php echo get_permalink(); ?>"><?php _e( 'Permalink ', 'yoko' ); ?></a>
  24. <?php edit_post_link( __( 'Edit &rarr;', 'yoko' ), '| <span class="edit-link">', '</span>' ); ?></p>
  25. </footer><!-- end entry-meta -->
  26. </div><!-- end entry-post-format -->
  27. </article><!-- end post-<?php the_ID(); ?> -->