Advertisement
audreat

mp_productlist

Oct 10th, 2013
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.66 KB | None | 0 0
  1. <?php
  2. /**
  3.  * The template for displaying MarketPress Product Listing pages.
  4.  *
  5. **/
  6.  
  7. get_header(); ?>
  8.  
  9. <div id="primary" class="site-content">
  10.     <div id="content" role="main">
  11.        
  12.         <div class="main-card">
  13.             <div class="main-card-top clear"></div>
  14.             <div class="main-card-content">
  15.                 <?php get_sidebar('shop'); ?>
  16.             </div>
  17.             <div class="main-card-btm"></div>
  18.         </div>
  19.        
  20.         <div class="side-callouts">
  21.             <a class="side-callout-top" href="/firehouse/store/products/category/gift-cards/">Gift Cards</a>
  22.             <a class="side-callout-mid" href="/firehouse/dinner-theatre/">Dinner Theatre</a>
  23.             <a class="side-callout-btm" href="/firehouse/buses/">Double Decker Transit Authority</a>
  24.         </div>                
  25.                
  26.         <p class="unstacked clear"><a href="/firehouse/store/shopping-cart/" class="mp_cart_link">Shopping Cartxx</a>&nbsp;&nbsp;&bull;&nbsp;&nbsp;<a href="/firehouse/store/order-status/" class="mp_orderstatus_link">Check Order Status</a>&nbsp;&nbsp;&bull;&nbsp;&nbsp;<a href="/firehouse/store/" class="mp_store_link">Back to Shop main page</a></p>
  27.         <div class="plain-hr"></div>
  28.            
  29.         <?php if ( have_posts() ) { ?>
  30.            
  31.             <!-- note: loop is inside of mp_list_products -->
  32.             <div id="mp-product-list-page" class="entry-content">
  33.                 <?php echo mp_products_filter(); ?>
  34.                 <?php mp_list_products(); ?>
  35.             </div><!-- .entry-content -->
  36.            
  37.         <?php } ?>
  38.  
  39.     </div><!-- #content -->
  40. </div><!-- #primary -->
  41.  
  42. <?php get_footer(); ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement