wordpress/php-fpm/wordpress_files/themes/wp-bootstrap-starter/woocommerce.php
2020-05-22 01:40:23 +00:00

28 lines
688 B
PHP

<?php
/**
* The template for displaying Woocommerce Product
*
* This is the template that displays all pages by default.
* Please note that this is the WordPress construct of pages
* and that other 'pages' on your WordPress site may use a
* different template.
*
* @link https://codex.wordpress.org/Template_Hierarchy
*
* @package WP_Bootstrap_Starter
*/
get_header(); ?>
<section id="primary" class="content-area col-sm-12 col-md-12 col-lg-8">
<main id="main" class="site-main" role="main">
<?php woocommerce_content(); ?>
</main><!-- #main -->
</section><!-- #primary -->
<?php
get_sidebar();
get_footer();