Advertisement
alchymyth

Untitled

Apr 20th, 2011
259
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.54 KB | None | 0 0
  1. <h2>Advisory Team</h2><br>     
  2. <?php $my_query = new WP_Query("cat=18&order=asc"); ?> <?php while ($my_query->have_posts()) : $my_query->the_post(); ?>
  3. <div class="wp-post-image">
  4. <?php if ( has_post_thumbnail()) the_post_thumbnail('50,50'); ?>
  5. </div>
  6. <a href="<?php the_permalink(); ?>">
  7. <div style="text-align:left;"><h4><?php the_title(); ?></h4></div>
  8.            
  9. </a>
  10. <?php the_content(); ?>
  11.  
  12. <div style="clear: both; padding-bottom: 10px; margin-bottom: 10px; border-bottom: 1px solid #515a24;"></div>
  13. <?php endwhile; ?>
  14. <?php wp_reset_query(); ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement