remove action from theme wordpress

Solutions on MaxInterview for remove action from theme wordpress by the best coders in the world

showing results for - "remove action from theme wordpress"
Paulina
29 Oct 2020
1add_action( 'init', 'remove_my_action');
2function remove_my_action() {
3     remove_action( 'woocommerce_before_shop_loop','storefront_sorting_wrapper',9 );
4}