Created
March 6, 2013 16:32
-
-
Save jameskoster/5100664 to your computer and use it in GitHub Desktop.
WooCommerce - declare WooCommerce support in theme
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
add_action( 'after_setup_theme', 'woocommerce_support' ); | |
function woocommerce_support() { | |
add_theme_support( 'woocommerce' ); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Example isn't completed. There isn't
<?php ... ?>
enclosing block.