Guest User

WP

a guest
May 16th, 2012
125
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.09 KB | None | 0 0
  1. <div id="randompost"> <!-- minder dan 30 euro -->
  2.  
  3. <div class="box">
  4. <h3>Onder de 30 euro</h3>
  5.     <?php query_posts('cat=77,98'.'&orderby=meta_value&orderby=rand&meta_key=Minimum Price&meta_value=30.00&meta_compare=<&order=desc&showposts=2'); while (have_posts()) : the_post(); ?>
  6.  
  7. <div class="inbox">
  8. <?php $linkout = get_post_meta($post->ID, 'Link',  true); ?><a href="<?php echo $linkout; ?>">
  9. <?php $imagefeed = get_post_meta($post->ID, 'Image',  true); ?><img src="<?php echo $imagefeed; ?>" alt="<?php the_title(); ?>"/><br>
  10. </a>
  11. <div class="textbox">
  12. <p>
  13. Merk: <?php $brand = get_post_meta($post->ID, 'Brand',  true); ?><?php echo $brand; ?><br>
  14. Prijs: <?php $minprice = get_post_meta($post->ID, 'Minimum Price',  true); ?><?php echo $minprice; ?><br>
  15. <?php $oldprice = get_post_meta($post->ID, 'Old Price',  true); ?>
  16. <?php if($oldprice > 0) { ?>
  17. Oude prijs: <span><?php echo $oldprice; ?></span><br>
  18. <?php } ?><br>
  19. </p>
  20. </div><!-- einde textbox -->
  21. </div><!-- einde inbox -->
  22.  
  23. <?php endwhile;?>
  24. <?php wp_reset_query(); ?>
  25. </div><!-- einde box -->
  26. </div><!-- einde random post -->
Advertisement
Add Comment
Please, Sign In to add comment