You want users to Sign Up before they can see any page on your website?
如果这是您所需要的,那么我想这是我可以使用jQuery来完成的。
尝试将此代码添加到footer.php 最后在 标签。
<script>
jQuery(document).ready(function($){
if (!$("body").hasClass("logged-in")) {
window.location.replace("/register");
}
});
</script>
Now, what this code does?基本上,当用户登录时,WordPress中的每个页面都会在body标记中获得“logged in”类。因此,我们检查用户是否已登录,如果未登录,则只需将其重定向到注册页面。
Still need help? Contact me.