您可以设置子主题,并在single-listing.php 模板,在当前代码周围添加条件。
<?php
// If the user is not logged in, redirect
if ( false == is_user_logged_in() ) {
wp_redirect( wp_login_url() );
exit;
}
// Else the user is logged in; show the listing
else {
// Paste the regular template code here
}
?>
其他所有内容都将保持公开,而只有单个列表将强制用户在查看内容之前登录。(这也会阻止搜索引擎看到内容,所以请记住。)