dprophit

Popular Posts

Jun 1st, 2013
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.80 KB | None | 0 0
  1. <!-- Begin Latest Posts -->
  2. <div class="columns seventeen">
  3.       <div class="site_goto_center">
  4.         <div class="margin_top4">
  5.         </div>
  6.         <div class="site_center_div">
  7.           <div class="columns eight">
  8.             <h3 class="with_line">Latest Forum Topics</h3>
  9. <?php $my_query = new WP_Query('showposts=1&offset=2'); ?>
  10. <?php while ($my_query->have_posts()) : $my_query->the_post(); ?>
  11.  
  12. <h2><a href="<?php the_permalink() ?>"><?php the_title(); ?></a></h2>
  13. <?php the_excerpt(); ?>
  14. <div class="hc">{ <em><?php _e('on', 'Detox') ?> <?php the_time('M'); ?><?php the_time('j'); ?> <?php the_time('Y'); ?> | <?php _e('in', 'Detox') ?>: <?php the_category(' | ') ?></em> }</div>
  15. wp_reset_postdata();
  16. <?php endwhile; ?>
  17. Hello World
  18. </div>
  19. <!-- End Begin Latest Posts -->
  20.         </div>
Advertisement
Add Comment
Please, Sign In to add comment