WooCommerce Theme Integration — a practical guide to WooCommerce theme support with clear examples you can reuse in real projects.
WordPress Theme Development Series (65/96). Prefer one article? Read the complete WordPress theme development tutorial.
Short description
Add `add_theme_support('woocommerce')` and provide overrides only where design needs them.
Declare support
add_action('after_setup_theme', function () {
add_theme_support('woocommerce');
add_theme_support('wc-product-gallery-zoom');
});