How to Moderate and Approve MyListing ...
Gain greater control over MyListing website reviews with this snippet. Automatically ...

WPCodeBox
253

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' );





