stuart-d
4/5/2016 - 3:09 PM

Storefront theme remove the secondary menu with and add_action();

Storefront theme remove the secondary menu with and add_action();

function remove_storefront_default_actions() {
	remove_action( 'storefront_header' , 'storefront_secondary_navigation' , 30 );
}
add_action( 'init', 'remove_storefront_default_actions' );