25% off ProSNIPC25OFF

Add Custom Body Class on Login Page

Appends a custom CSS class to the body tag on wp-login.php for targeted login-page styling.

PHPby SnipCraft
php
<?php
add_filter( 'login_body_class', 'scseed_custom_login_body_class' );
function scseed_custom_login_body_class( $classes ) {
    $classes[] = 'custom-login-page';
    return $classes;
}
#branding#css#customization#login