How to Change the WordPress Login Page...
This snippet allows you to easily change the URL of the logo on your WordPress login ...

WPCodeBox
38
Optimize your WordPress site! This snippet customizes excerpts for password-protected pages, allowing you to control content visibility and even integrate calls to action like “join now” with your favorite e-commerce plugin.
<?php
/**
* Snippet Name: Custom excerpt for password protected pages
* Snippet URL: https://wpcustoms.net/snippets/custom-excerpt-password-protected-pages/
*/
function password_required_excerpt( $excerpt ) {
if ( post_password_required() )
{
$excerpt = 'This is a private page to request the password please contact the site administrator.';
}
return $excerpt;
}
add_filter( 'the_excerpt', 'password_required_excerpt' );