我对它进行了测试,默认情况下,它将向所有人显示它,即使其中一个类别是仅限成员。如果您需要对此进行修复(像我一样),请在中使用以下内容functions.php
:
function my_filter( $content ) {
$categories = array(
\'news\',
\'opinions\',
\'sports\',
\'other\',
);
if ( in_category( $categories ) ) {
if ( is_logged_in() ) {
return $content;
} else {
$content = \'<p>Sorry, this post is only available to members</p>\';
return $content;
}
} else {
return $content;
}
}
add_filter( \'the_content\', \'my_filter\' );
从我的另一个
question.