wc_customer_edit_account_url()
Get the link to the edit account details page.
Hooks from the function
Returns
String.
Usage
wc_customer_edit_account_url();
wc_customer_edit_account_url() wc customer edit account url code WC 10.7.0
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 );
}