我正在使用WordPress的密码保护功能
https://codex.wordpress.org/Using_Password_Protection
用密码保护我的网页。
所以现在当我看到前端的页面时,无论登录谁都要求输入密码。我想知道是否有任何办法,管理员可以直接在前端查看网站而无需输入密码。但其他用户必须。
我想这是不可能的。但我仍然想确定它。请好好告诉我。
答案 0 :(得分:1)
add_filter( 'post_password_required', 'remove_password_requirement_for_admins', 0 );
function remove_password_requirement_for_admins( $required ) {
if ( current_user_can( 'manage_options' ) ) {
$required = false;
}
return $required;
}
将此添加到您的主题functions.php
。