Created
June 29, 2017 18:27
-
-
Save mtruitt/8169a460b56c7148087a7cd2fa96bd15 to your computer and use it in GitHub Desktop.
WooCommerce Theme Support 3.X
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
| <?php | |
| add_action( 'after_setup_theme', 'wc_support' ); | |
| function wc_support() { | |
| add_theme_support( 'woocommerce' ); | |
| add_theme_support( 'wc-product-gallery-zoom' ); | |
| add_theme_support( 'wc-product-gallery-lightbox' ); | |
| add_theme_support( 'wc-product-gallery-slider' ); | |
| } |
Author
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Delcares WooCommerce support in third party themes.
Adds support for zoom, lightbox and slider in 3.X as well.