Wordpress Theme Reference




WooCommerce Setup

Add support for WooCommerce by adding these lines in functions.php:

function after_setup() {
     add_theme_support('woocommerce');
 }
 
 add_action('after_setup_theme', 'after_setup');