is_edit_account_page()
Check for edit account page.
Description Description
Returns true when viewing the edit account page.
Return Return
(bool)
Source Source
File: includes/wc-conditional-functions.php
function is_edit_account_page() {
global $wp;
$page_id = wc_get_page_id( 'myaccount' );
return ( $page_id && is_page( $page_id ) && isset( $wp->query_vars['edit-account'] ) );
}
Changelog Changelog
| Version | Description |
|---|---|
| 2.5.1 | Introduced. |