Advertisement
FlyFX

loop-category.php

Jun 9th, 2012
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.34 KB | None | 0 0
  1. <?php /* How to display all other posts. */ ?>
  2.  
  3. <?php else : ?>
  4. <div id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
  5. <table width="210px" border="0" cellspacing="0" cellpadding="0">
  6. <tr>
  7. <td align="left" valign="middle" class='title_black'><a href="<?php the_permalink(); ?>" title="<?php printf( esc_attr__( 'Permalink to %s', 'twentyten' ), the_title_attribute( 'echo=0' ) ); ?>" rel="bookmark"><?php the_title(); ?>
  8. </a></td>
  9. <td width="19%" rowspan="3">&nbsp;</td>
  10. </tr>
  11. <tr>
  12. <td align="left" valign="middle">
  13. <span class="entry-summary">
  14. <?php the_excerpt( __( 'Continue reading <span class="meta-nav">&rarr;</span>', 'twentyten' ) ); ?>
  15. </span></td>
  16. </tr>
  17. <tr>
  18. <td align="left" valign="middle"><span class="entry-content">
  19. <?php wp_link_pages( array( 'before' => '<div class="page-link">' . __( 'Pages:', 'twentyten' ), 'after' => '</div>' ) ); ?>
  20. </span></td>
  21. </tr>
  22. </table>
  23. <a href="<?php the_permalink(); ?>" title="<?php printf( esc_attr__( 'Permalink to %s', 'twentyten' ), the_title_attribute( 'echo=0' ) ); ?>" rel="bookmark"> </a>
  24. <div class="entry-summary"></div><!-- .entry-summary -->
  25. <div class="entry-content"></div><!-- .entry-content -->
  26. <?php endif; ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement