tubaguy50035

Untitled

Jun 21st, 2013
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.59 KB | None | 0 0
  1. <div id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
  2. <div id="blog-content">
  3. <h5 class="entry-title"><a href="<?php the_permalink(); ?>" title="<?php printf( __('Read %s', 'blankslate'), the_title_attribute('echo=0') ); ?>" rel="bookmark"><?php the_title(); ?></a></h5>
  4. <?php get_template_part( 'entry', 'meta' ); ?>
  5. <?php
  6. if(is_archive() || is_search()){
  7. get_template_part('entry','summary');
  8. } else {
  9. get_template_part('entry','content');
  10. }
  11. ?>
  12. <?php
  13. if ( is_single() ) {
  14. get_template_part( 'entry-footer', 'single' );
  15. } else {
  16. get_template_part( 'entry-footer' );
  17. }
  18. ?>
  19. </div>
Advertisement
Add Comment
Please, Sign In to add comment