mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-05-02 12:02:25 +08:00
4 lines
140 B
Text
4 lines
140 B
Text
function remove_woocommerce_support() {
|
|
remove_theme_support( 'woocommerce' );
|
|
}
|
|
add_action( 'wp', 'remove_woocommerce_support', 100 );
|