<?php /** * FUNCTIONS / THEME INITIALIZATION * * This file loads the core framework which handles everything. * * @package PageLines Framework * @since 1.0 * * @link http://www.pagelines.com/ * @link http://www.pagelines.com/tour * * @author PageLines http://www.pagelines.com/ * @copyright Copyright (c) 2008-2012, PageLines hello@pagelines.com * * @internal last revised January 20, 2012 * @version ... * * @todo Define version */ require_once(get_template_directory() . '/includes/init.php'); add_action('woocommerce_before_main_content', 'my_theme_wrapper_start', 10); add_action('woocommerce_after_main_content', 'my_theme_wrapper_end', 10); function my_theme_wrapper_start() { echo '<div id="main">'; } function my_theme_wrapper_end() { echo '</div>'; } add_theme_support( 'woocommerce' );