Answers for "remove action from theme wordpress"

PHP
0

remove action from theme wordpress

add_action( 'init', 'remove_my_action');
function remove_my_action() {
     remove_action( 'woocommerce_before_shop_loop','storefront_sorting_wrapper',9 );
}
Posted by: Guest on June-19-2021

Browse Popular Code Answers by Language