我正在从店面创建一个儿童主题。
现在我想删除子主题中的这些操作
add_action( \'woocommerce_before_shop_loop\',\'storefront_sorting_wrapper\',9 );
通过此功能:
add_action( \'after_setup_theme\',\'remove_action\', 100 );
function remove_action() {
remove_action( \'init\', \'woocommerce_before_shop_loop\');
}
但它不起作用!