File "class-wc-twenty-fifteen.php"
Full path: /home/kosmetik/public_html/wp-content/plugins/woocommerce/includes/theme-support/class-wc-twenty-fifteen.php
File
size: 1.07 B
MIME-type: text/x-php
Charset: utf-8
Download Open Edit Advanced Editor Back
<?php
defined('ABSPATH') || exit;
class WC_Twenty_Fifteen
{
public static function init()
{
remove_action('woocommerce_before_main_content', 'woocommerce_output_content_wrapper');
remove_action('woocommerce_after_main_content', 'woocommerce_output_content_wrapper_end');
add_action('woocommerce_before_main_content', array(__CLASS__, 'output_content_wrapper'));
add_action('woocommerce_after_main_content', array(__CLASS__, 'output_content_wrapper_end'));
add_theme_support('wc-product-gallery-zoom');
add_theme_support('wc-product-gallery-lightbox');
add_theme_support('wc-product-gallery-slider');
add_theme_support('woocommerce', array('thumbnail_image_width' => 200, 'single_image_width' => 350));
}
public static function output_content_wrapper()
{
echo '<div id="primary" role="main" class="content-area twentyfifteen"><div id="main" class="site-main t15wc">';
}
public static function output_content_wrapper_end()
{
echo '</div></div>';
}
}
WC_Twenty_Fifteen::init();