Advertisement
johncarlson21

archive-product.php

Jul 28th, 2015
238
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 2.27 KB | None | 0 0
  1. <?php
  2. /**
  3.  * The Template for displaying product archives, including the main shop page which is a post type archive.
  4.  *
  5.  * Override this template by copying it to yourtheme/woocommerce/archive-product.php
  6.  *
  7.  * @author      WooThemes
  8.  * @package     WooCommerce/Templates
  9.  * @version     2.0.0
  10.  */
  11.  
  12. if ( ! defined( 'ABSPATH' ) ) {
  13.     exit; // Exit if accessed directly
  14. }
  15.  
  16. get_header( 'shop' ); ?>
  17.  
  18.     <?php
  19.         /**
  20.          * woocommerce_before_main_content hook
  21.          *
  22.          * @hooked woocommerce_output_content_wrapper - 10 (outputs opening divs for the content)
  23.          * @hooked woocommerce_breadcrumb - 20
  24.          */
  25.         do_action( 'woocommerce_before_main_content' );
  26.     ?>
  27.  
  28.         <?php if ( apply_filters( 'woocommerce_show_page_title', true ) ) : ?>
  29.  
  30.             <h1 class="page-title"><?php woocommerce_page_title(); ?></h1>
  31.  
  32.         <?php endif; ?>
  33.  
  34.         <?php do_action( 'woocommerce_archive_description' ); ?>
  35.  
  36.         <?php if ( have_posts() ) : ?>
  37.  
  38.             <?php
  39.                 /**
  40.                  * woocommerce_before_shop_loop hook
  41.                  *
  42.                  * @hooked woocommerce_result_count - 20
  43.                  * @hooked woocommerce_catalog_ordering - 30
  44.                  */
  45.                 do_action( 'woocommerce_before_shop_loop' );
  46.             ?>
  47.  
  48.             <?php woocommerce_product_loop_start(); ?>
  49.  
  50.                 <?php woocommerce_product_subcategories(); ?>
  51.  
  52.                 <?php while ( have_posts() ) : the_post(); ?>
  53.  
  54.                     <?php wc_get_template_part( 'content', 'product' ); ?>
  55.  
  56.                 <?php endwhile; // end of the loop. ?>
  57.  
  58.             <?php woocommerce_product_loop_end(); ?>
  59.  
  60.             <?php
  61.                 /**
  62.                  * woocommerce_after_shop_loop hook
  63.                  *
  64.                  * @hooked woocommerce_pagination - 10
  65.                  */
  66.                 do_action( 'woocommerce_after_shop_loop' );
  67.             ?>
  68.  
  69.         <?php elseif ( ! woocommerce_product_subcategories( array( 'before' => woocommerce_product_loop_start( false ), 'after' => woocommerce_product_loop_end( false ) ) ) ) : ?>
  70.  
  71.             <?php wc_get_template( 'loop/no-products-found.php' ); ?>
  72.  
  73.         <?php endif; ?>
  74.  
  75.     <?php
  76.         /**
  77.          * woocommerce_after_main_content hook
  78.          *
  79.          * @hooked woocommerce_output_content_wrapper_end - 10 (outputs closing divs for the content)
  80.          */
  81.         do_action( 'woocommerce_after_main_content' );
  82.     ?>
  83.  
  84.     <?php
  85.         /**
  86.          * woocommerce_sidebar hook
  87.          *
  88.          * @hooked woocommerce_get_sidebar - 10
  89.          */
  90.         do_action( 'woocommerce_sidebar' );
  91.     ?>
  92.  
  93. <?php get_footer( 'shop' ); ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement