Code-Snippets-Functions/Execute a function on a child site/WooCommerce/disable-brands.txt

3 lines
106 B
Text

add_action( 'init', function() {
update_option( 'wc_feature_woocommerce_brands_enabled', 'no' );
} );