Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
File Manager
/
wp-content
/
themes
/
buildbench
/
template
:
template-woo.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php /** * Template Name: WooCommerce Template * * The template for displaying all pages. */ ?> <?php get_header(); get_template_part( 'template-parts/banner/content', 'banner-shop' ); ?> <div class="woo-xs-content" role="main"> <div class="container"> <div class="row"> <div class="<?php echo esc_attr($sidebar = is_active_sidebar( 'sidebar-woo' ) == true && is_shop() ? 'col-md-9' : 'col-md-12'); ?>"> <?php while ( have_posts() ) : the_post(); ?> <article id="post-<?php the_ID(); ?>" <?php post_class(); ?>> <!-- Article content --> <div class="entry-content"> <?php the_content(); ?> </div> <!-- end entry-content --> </article> <?php endwhile; ?> </div> <!-- end main-content --> <?php if ( is_active_sidebar( 'sidebar-woo' ) && is_shop() ) { get_sidebar( 'woo' ); } ?> </div> </div> </div> <?php get_footer(); ?>