How to Make WPCodeBox Full-Width by Hi...
This WordPress snippet effectively hides the WordPress admin menu, allowing WPCodeBox...

WPCodeBox
386
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;
} );





