woocommerce_before_account_navigation action-hookWC 1.0

Usage

add_action( 'woocommerce_before_account_navigation', 'wp_kama_woocommerce_before_account_navigation_action' );

/**
 * Function for `woocommerce_before_account_navigation` action-hook.
 * 
 * @return void
 */
function wp_kama_woocommerce_before_account_navigation_action(){

	// action...
}

Where the hook is called

In file: /templates/myaccount/navigation.php
woocommerce_before_account_navigation
woocommerce/templates/myaccount/navigation.php 22
do_action( 'woocommerce_before_account_navigation' );

Where the hook is used in WooCommerce

Usage not found.