Guest User

Untitled

a guest
Apr 24th, 2018
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.34 KB | None | 0 0
  1. <?php get_header(); ?>
  2. <?php global $woo_options; ?>
  3.  
  4. <div id="content" class="col-full homepage">
  5.  
  6. <?php get_template_part( 'includes/featured' ); ?>
  7.  
  8. <div id="featured-products">
  9. <h2 class="flourish-title"><span><?php _e('Featured Products', 'woothemes'); ?></span></h2>
  10. <?php echo do_shortcode('[featured_products per_page="5" columns="5"]'); ?>
  11. </div><!--/#featured-products-->
  12.  
  13. <div id="main" class="col-left">
  14.  
  15. <div id="main-page1">
  16. <?php $mypageid = '1297'; ?>
  17. <?php query_posts(array('page_id' => $mypageid)); ?>
  18. <?php if (have_posts()) : while (have_posts()) : the_post(); ?>
  19. <div class="entry"><?php the_content(); ?></div>
  20. <?php endwhile; endif; ?>
  21. <div class="fix"></div>
  22. </div><!-- /#main-page1 -->
  23.  
  24. <div class="product-gallery">
  25. <h2 class="flourish-title"><span><?php _e('Recent Products', 'woothemes'); ?></span></h2>
  26. <?php echo do_shortcode('[recent_products per_page="6" columns="2"]'); ?>
  27. </div><!--/.product-gallery-->
  28.  
  29. </div><!-- /#main -->
  30.  
  31. <?php get_sidebar(); ?>
  32.  
  33. </div><!-- /#content -->
  34.  
  35. <?php get_footer(); ?>
Add Comment
Please, Sign In to add comment