비회원의 페이지 접근 제한
테마으 functions.php에 추가
/************************************************************************
* 특정 페이지 액세스 제한
* is_page( array( 42, 'about-me', 'Contact' ) ) 아이디 또는 슬러그
************************************************************************/
add_filter('the_content', 'page_restrict');
function page_restrict($content){
if(is_page( array('page01','page02','page03')) && !is_user_logged_in()){
?>
<script>
alert('회원만 열람 가능합니다'); //문구수정
//window.history.go(-1);
location.href = '/';
</script>
<?php
exit;
}
return $content;
}