How to Prevent MyListing From Loading ...
When visitors view product pages, clicking on a product thumbnail image may trigger a...

WPCodeBox
516
This snippet allows you to easily change the URL of the logo on your WordPress login page, which by default links to the WordPress site.
<?php
/**
* Replaces the login header logo URL
*
* @param $url
*/
add_filter( 'login_headerurl', function ( $url ) {
$url = home_url( '/' );
return $url;
} );





