Advertisement
Guest User

Untitled

a guest
Aug 1st, 2012
43
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.21 KB | None | 0 0
  1. <? get_header(); ?>
  2. <table width="100%" cellpadding="5" cellspacing="5" border="0" align="center">
  3. <tr>
  4. <td width="66%" valign="top">
  5. <H1>The Latest News</H1>
  6.  
  7. <?php $my_query = new WP_Query('category_name=news,blog');
  8. while ($my_query->have_posts()) : $my_query->the_post(); ?>
  9.  
  10. <H2 style="margin:0; padding:0;"><? the_title(); ?></H2>
  11. <p style="border-bottom: 1px dashed #3b5d98;"><? echo get('date'); ?>: <? the_author_posts_link(); ?></p>
  12. <? the_content();?>
  13. <br /><hr />
  14.  
  15. <?php endwhile; wp_reset_postdata(); // End the loop ?>
  16.  
  17. <table width=100% cellpadding=5 cellspacing=5 border=0 align=center>
  18. <tr>
  19. <td width=50% align=left><?php posts_nav_link('</td><td width=50% align=right>','&laquo; Previous Page','Next Page &raquo;'); ?></td>
  20. </tr>
  21. </table>
  22. </td>
  23. <td width="34%" valign="top">
  24. <? get_sidebar('social'); ?>
  25. <? get_sidebar('subgenres'); ?>
  26. <? get_sidebar('newsletter'); ?>
  27. </td>
  28. </tr>
  29. </table>
  30. <? get_footer(); ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement