wc_customer_edit_account_url()WC 1.0

Get the link to the edit account details page.

Hooks from the function

Return

String.

Usage

wc_customer_edit_account_url();

wc_customer_edit_account_url() code WC 8.6.1

function wc_customer_edit_account_url() {
	$edit_account_url = wc_get_endpoint_url( 'edit-account', '', wc_get_page_permalink( 'myaccount' ) );

	return apply_filters( 'woocommerce_customer_edit_account_url', $edit_account_url );
}