1.在进入网站的时候先执行login.php (登录)页面,
添加自定义函数
在当前主题的function.php中添加:文章源自陈学虎-https://chenxuehu.com/article/2012/10/926.html
文章源自陈学虎-https://chenxuehu.com/article/2012/10/926.html
文章源自陈学虎-https://chenxuehu.com/article/2012/10/926.html
function liveme_if_login() { if(!is_user_logged_in()){ auth_redirect(); } }
文章源自陈学虎-https://chenxuehu.com/article/2012/10/926.html
调用自定义函数
在当前主题的header.php中添加:文章源自陈学虎-https://chenxuehu.com/article/2012/10/926.html
文章源自陈学虎-https://chenxuehu.com/article/2012/10/926.html
文章源自陈学虎-https://chenxuehu.com/article/2012/10/926.html
<?php liveme_if_login();?>
这样就实现了先执行登录页,.当用户名和密码正确之后登录成功再转入index.php(主页面)文章源自陈学虎-https://chenxuehu.com/article/2012/10/926.html 文章源自陈学虎-https://chenxuehu.com/article/2012/10/926.html
评论