Advertisement
Guest User

Untitled

a guest
Sep 24th, 2014
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.22 KB | None | 0 0
  1. <?php
  2. /**
  3. * @package Bushwick
  4. */
  5. ?>
  6.  
  7. <article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
  8. <?php the_title( '<header class="entry-header"><h1 class="entry-title"><a href="' . esc_url( get_permalink() ) . '" rel="bookmark">', '</a></h1></header><!-- .entry-header -->' ); ?>
  9.  
  10. <?php if ( is_search() ) : ?>
  11. <div class="entry-summary">
  12. <?php the_excerpt(); ?>
  13. </div><!-- .entry-summary -->
  14. <?php else : ?>
  15.  
  16. <div class="entry-content">
  17. <?php
  18. the_excerpt( __( 'Continue reading <span class="meta-nav">&rarr;</span>', 'bushwick' ) );
  19. wp_link_pages( array(
  20. 'before' => '<div class="page-links">' . __( 'Pages:', 'bushwick' ),
  21. 'after' => '</div>',
  22. ) );
  23. ?>
  24. </div><!-- .entry-content -->
  25.  
  26. <!- test -->
  27.  
  28. <div class="entry-permalink">
  29. <a class="more-link" href="<?php the_permalink(); ?>" title="<?php the_title_attribute(); ?>" rel="bookmark"><?php _e( 'Read', 'bushwick' ); ?></a>
  30. </div><!-- .entry-permalink -->
  31.  
  32. <!-- end test -->
  33.  
  34. <?php endif; ?>
  35.  
  36. <footer class="entry-meta">
  37. <?php
  38. bushwick_posted_on();
  39. edit_post_link( __( 'Edit', 'bushwick' ), ' <span class="edit-link">', '</span>' );
  40. ?>
  41. </footer><!-- .entry-meta -->
  42. </article><!-- #post-## -->
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement