Skip to content

Instantly share code, notes, and snippets.

@tderick
Created August 20, 2022 12:16
Show Gist options
  • Select an option

  • Save tderick/81a19722b2a3722ef00a00a12355fd2d to your computer and use it in GitHub Desktop.

Select an option

Save tderick/81a19722b2a3722ef00a00a12355fd2d to your computer and use it in GitHub Desktop.
<?php
add_action( 'login_head', 'wpse_121687_hide_login' );
function wpse_121687_hide_login() {
$style = '';
$style .= '<style type="text/css">';
$style .= '.login form .user-pass-wrap{ display: none }';
$style .= '.login form .submit { display: none }';
$style .= '.login form .forgetmenot { display: none }';
$style .= '.login form .input { display: none }';
$style .= '.login form label { display: none }';
$style .= '.login #nav { display: none }';
$style .= '.login #mo_saml_button b { display: none }';
$style .= '#login {margin-top: 150px}';
$style .= '</style>';
echo $style;
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment