// Filter & Function to rename the WordPress logout URL add_filter( 'logout_url', 'my_logout_page', 10, 2 ); function my_logout_page( $logout_url) { return home_url( '/wp-admin/wp-login.php'); // The name of your new login file } // Filter & Function to rename Lost Password URL add_filter( 'lostpassword_url', 'my_lost_password_page', 10, 2 ); function my_lost_password_page( $lostpassword_url ) { return home_url( '/wp-admin/wp-login.php?action=lostpassword'); // The name of your new login file } September 12, 2024 – freshremix.net
freshremix
part of the remix.network
freshremix.net