Advertisement
heatherland

overriding break tag for image excerpts on category pages

Oct 3rd, 2011
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.65 KB | None | 0 0
  1. <?php
  2. /**
  3. * The default template for displaying content
  4. *
  5. * @package WordPress
  6. * @subpackage Twenty_Eleven
  7. * @since Twenty Eleven 1.0
  8. */
  9. ?>
  10.  
  11. <article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
  12. <header class="entry-header">
  13.  
  14. <?php if ( comments_open() && ! post_password_required() ) : ?>
  15.  
  16. <?php endif; ?>
  17. </header><!-- .entry-header -->
  18.  
  19. <?php if ( is_search() ) : // Only display Excerpts for Search ?>
  20. <div class="entry-summary">
  21. <?php the_excerpt(); ?>
  22. </div><!-- .entry-summary -->
  23. <?php else : ?>
  24. <a href="<?php the_permalink() ?>">
  25. <?php the_excerpt_rss(); ?>
  26. </a>
  27. <?php endif; ?>
  28.  
  29.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement