Sitedeki paylaşımları sadece üyeler görebilecek gold üyelik değil normal üye olanlar sitede paylaşılanı görebilecek
memberpress ile yapabilirsin.
ya da temada single.php, page.php’de şu kodu kullanabilirsin
<?php
if ( is_user_logged_in() ) {
// Content visible only to logged-in users
the_content();
} else {
// Message for non-logged-in users
echo 'Please log in to view this content.';
}
?>