function custom_redirect() { global $wp; if( $wp->request == 'my-account' ) { wp_redirect( site_url( 'my-account/orders/' ) ); exit; } } add_action ('template_redirect', 'custom_redirect');