Guest User

Untitled

a guest
Jun 20th, 2018
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.00 KB | None | 0 0
  1. <?php get_header(); ?>
  2. <div class="featured">
  3. <div id="mygallery" class="stepcarousel">
  4. <div class="belt">
  5.  
  6. <?php $my_query = new WP_Query('category_name=featured&showposts=5');
  7. while ($my_query->have_posts()) : $my_query->the_post(); ?>
  8. <div class="panel">
  9. <div class="stepbottom"><div class="corner <?php $values = get_post_custom_values('ribbon'); echo $values[0]; ?>"></div>
  10. <h1><?php the_title(); ?></h1>
  11. <?php the_content(__('(more...)')); ?> <br /><br />
  12. </div>
  13. <img src="<?php $values = get_post_custom_values('featured_image'); echo $values[0]; ?>" class="bordermain" alt='<?php the_title(); ?> Thumbnail Image' /></div>
  14. <?php endwhile; ?>
  15.  
  16.  
  17.  
  18. </div>
  19. </div>
  20. </div>
Add Comment
Please, Sign In to add comment