woocommerce/templates/archive-product.php

25 lines
968 B
PHP
Raw Normal View History

2011-08-09 15:16:18 +00:00
<?php get_header('shop'); ?>
2011-08-10 17:11:11 +00:00
<?php do_action('woocommerce_before_main_content'); // <div id="container"><div id="content" role="main"> ?>
2011-08-09 15:16:18 +00:00
<?php if (is_search()) : ?>
2011-08-10 17:11:11 +00:00
<h1 class="page-title"><?php _e('Search Results:', 'woothemes'); ?> &ldquo;<?php the_search_query(); ?>&rdquo; <?php if (get_query_var('paged')) echo ' &mdash; Page '.get_query_var('paged'); ?></h1>
2011-08-09 15:16:18 +00:00
<?php else : ?>
2011-08-10 17:11:11 +00:00
<h1 class="page-title"><?php _e('All Products', 'woothemes'); ?></h1>
2011-08-09 15:16:18 +00:00
<?php endif; ?>
<?php
2011-08-10 17:11:11 +00:00
$shop_page_id = get_option('woocommerce_shop_page_id');
2011-08-09 15:16:18 +00:00
$shop_page = get_post($shop_page_id);
echo apply_filters('the_content', $shop_page->post_content);
?>
2011-08-10 17:11:11 +00:00
<?php woocommerce_get_template_part( 'loop', 'shop' ); ?>
2011-08-09 15:16:18 +00:00
2011-08-10 17:11:11 +00:00
<?php do_action('woocommerce_pagination'); ?>
2011-08-09 15:16:18 +00:00
2011-08-10 17:11:11 +00:00
<?php do_action('woocommerce_after_main_content'); // </div></div> ?>
2011-08-09 15:16:18 +00:00
<!--mfunc do_action('woocommerce_sidebar') --><?php do_action('woocommerce_sidebar'); ?><!--/mfunc-->
2011-08-09 15:16:18 +00:00
<?php get_footer('shop'); ?>