mirror of
https://git.sindominio.net/estibadores/wordpress.git
synced 2024-11-14 23:21:07 +01:00
28 lines
688 B
PHP
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();
|