redirecting wp-login blade logo url to return on home when clicked
This commit is contained in:
parent
7eeb882a56
commit
00235ff0e9
|
|
@ -53,6 +53,14 @@ function enqueue_custom_login_stylesheet()
|
|||
}
|
||||
add_action('login_enqueue_scripts', 'enqueue_custom_login_stylesheet');
|
||||
|
||||
add_filter('login_headerurl', 'my_custom_login_url');
|
||||
function my_custom_login_url($url)
|
||||
{
|
||||
return site_url();
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
/* ----------------------------------
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user