Advertisement
Guest User

Untitled

a guest
Feb 6th, 2016
48
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.42 KB | None | 0 0
  1. $wp_query->query('posts_per_page='.$home_count.'&post_type=products'.'&paged='.$paged);
  2.  
  3. $wp_query->query('orderby=rand&order=ASC'.'posts_per_page='.$home_count.'&post_type=products'.'&paged='.$paged);
  4.  
  5. <?php if (have_posts()) : ?>
  6. <?php while (have_posts()) : the_post(); ?>
  7.  
  8. <li class="box" id="post-<?php the_ID(); ?>">
  9.  
  10. <?php $disc = get_post_meta($post->ID, 'fabthemes_discount', true); ?>
  11.  
  12. <?php if ( $disc ) { ?>
  13.  
  14. <span class="salebadge"></span>
  15.  
  16. <?php }?>
  17.  
  18.  
  19.  
  20. <a href="<?php the_permalink() ?>"><img class="productshot" src="<?php get_image_url(); ?>" alt=""/></a>
  21.  
  22.  
  23.  
  24. <div class="pricetab clearfix">
  25.  
  26.  
  27.  
  28. <?php if ( $disc ) { ?>
  29.  
  30. <span class="oldprice"><del> <?php echo get_post_meta($post->ID, 'fabthemes_disc-price', true) ?> </del></span>
  31.  
  32. <?php }?>
  33.  
  34.  
  35.  
  36. <span class="prodetail"><a href="<?php the_permalink() ?>"><?php $price=get_post_meta($post->ID, 'fabthemes_price', true); echo $price; ?></a></span>
  37.  
  38. </div>
  39.  
  40. </li>
  41. <?php endwhile; ?>
  42. </ul>
  43. <div id="home-content2" class="clearfix">
  44. <h1 align="center"><b>Google</b> Hedeflenen Kelimelerimiz Hakkında Makalemiz</h1>
  45. <?php if ( $paged < 2 ) { ?>
  46. <?php echo category_description( $category_id ); ?>
  47. <?php } ?>
  48. </div>
  49.  
  50. <?php getpagenavi(); ?>
  51.  
  52. <?php else : ?>
  53.  
  54. <h1 class="title">Üzgünüz</h1>
  55. <p>Henüz bu kategoride ilan verilmemiş.</p>
  56.  
  57. <?php endif; ?>
  58.  
  59. </div>
  60. <?php get_footer(); ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement