How can I change link login page?
-
Hello,
I would like change default link login page, but I dont know how.My code looks like that:
function rstheme_action_url_redirect( $url, $action, $instance ) { // useful if you're in sub-domain, you can also change a bit more like using get_permalink( $page_id ) $site_url = get_bloginfo( 'url' ); switch ( $action ) { case 'register' : $url = $home_url . '/subscribe/'; break; case 'lostpassword' : $url = get_permalink( 10 ); // where 10 is the new lost password page break; } return $url; }
add_filter( ‘tml_action_url’, ‘rstheme_action_url_redirect’, 10, 3 );
and it works well. But I would like to change a default link login page. How can I do it?
Thank you for help and greet.
Viewing 12 replies - 1 through 12 (of 12 total)
Viewing 12 replies - 1 through 12 (of 12 total)
- The topic ‘How can I change link login page?’ is closed to new replies.