woocommerce_customer_edit_account_url filter-hookWC 1.0

Usage

add_filter( 'woocommerce_customer_edit_account_url', 'wp_kama_woocommerce_customer_edit_account_url_filter' );

/**
 * Function for `woocommerce_customer_edit_account_url` filter-hook.
 * 
 * @param  $edit_account_url 
 *
 * @return 
 */
function wp_kama_woocommerce_customer_edit_account_url_filter( $edit_account_url ){

	// filter...
	return $edit_account_url;
}
$edit_account_url
-

Where the hook is called

wc_customer_edit_account_url()
woocommerce_customer_edit_account_url
woocommerce/includes/wc-account-functions.php 51
return apply_filters( 'woocommerce_customer_edit_account_url', $edit_account_url );

Where the hook is used in WooCommerce

Usage not found.