12 lines
203 B
PHP
12 lines
203 B
PHP
|
<?php
|
||
|
/**
|
||
|
* Add WooCommerce support
|
||
|
*
|
||
|
*
|
||
|
* @package understrap
|
||
|
*/
|
||
|
|
||
|
add_action( 'after_setup_theme', 'woocommerce_support' );
|
||
|
function woocommerce_support() {
|
||
|
add_theme_support( 'woocommerce' );
|
||
|
}
|