我正在最新的wordpress上使用bimber主题。我想在登录后强制所有frontpage视图,并在bimber的函数中添加了以下代码。php
function members_only() {
// Check to see if user in not logged in and not on the login page
if( !is_user_logged_in() && (is_home()||is_front_page())){
auth_redirect();
}
}
add_action( \'template_redirect\', \'members_only\' );
但这对个人帖子有效,但对我的主页无效。如何修复此问题?