Advertisement
imranmodel32

woocommerce template structure

Dec 8th, 2014
159
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.68 KB | None | 0 0
  1. <?php
  2. /**
  3.  * The template for displaying all pages.
  4.  *
  5.  * This is the template that displays all pages by default.
  6.  * Please note that this is the WordPress construct of pages
  7.  * and that other 'pages' on your WordPress site will use a
  8.  * different template.
  9.  *
  10.  * @package presscore
  11.  * @since presscore 1.0
  12.  */
  13.  
  14. // File Security Check
  15. if ( ! defined( 'ABSPATH' ) ) { exit; }
  16.  
  17.  
  18. get_header(); ?>
  19.  
  20.  
  21. <div id="content" class="wpb_woo_archive_page" role="main">
  22.  
  23. <div class="wpb_woo_sidebar col-md-3">
  24. <?php dynamic_sidebar( 'sidebar_6' ); ?>
  25. </div>  
  26.  
  27. <div class="col-md-9">
  28. <?php woocommerce_content(); ?>
  29. </div>  
  30.  
  31. </div><!-- #content -->
  32.  
  33.  
  34.  
  35. <?php get_footer(); ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement