mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-04-29 11:32:21 +08:00
8 lines
188 B
Text
8 lines
188 B
Text
add_action( 'template_redirect', 'disable_my_account_page' );
|
|
|
|
function disable_my_account_page() {
|
|
if ( is_account_page() ) {
|
|
wp_redirect( home_url() );
|
|
exit;
|
|
}
|
|
}
|