wc_customer_edit_account_url()
Get the link to the edit account details page.
Хуки из функции
Возвращает
Строку.
Использование
wc_customer_edit_account_url();
Код wc_customer_edit_account_url() wc customer edit account url WC 10.8.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 );
}