Home Forums Theme support Prestige Theme Glitch? Reply To: Prestige Theme Glitch?

Hi,

there was a problem with the most recent WordPress update, seems they changed something with the permalink functions. But the problem is very easy to solve, you can add this code add the end of your functions.php file, then all is working without any problem:

add_filter( 'login_url', 'my_login_page', 10, 2 );
function my_login_page( $login_url, $redirect ) {
    return home_url( 'wp-login.php' );
}