wordpress 需要登陆才能查看文章

老虎说测试 脚本开发字数 230阅读0分46秒阅读模式
摘要wordpress 需要登陆才能查看文章

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

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
function liveme_if_login()
{
if(!is_user_logged_in()){
auth_redirect();
}
}
function liveme_if_login() { if(!is_user_logged_in()){ auth_redirect(); } }
  1. function liveme_if_login()
  2. {
  3. if(!is_user_logged_in()){
  4. auth_redirect();
  5. }
  6. }

 文章源自陈学虎-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

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
<?php liveme_if_login();?>
<?php liveme_if_login();?>
  1. <?php liveme_if_login();?>

这样就实现了先执行登录页,.当用户名和密码正确之后登录成功再转入index.php(主页面)文章源自陈学虎-https://chenxuehu.com/article/2012/10/926.html 文章源自陈学虎-https://chenxuehu.com/article/2012/10/926.html

 最后更新:2017-4-4
  • 版权声明:本文为原创文章,转载请附上原文出处链接及本声明。
  • 转载请注明:wordpress 需要登陆才能查看文章 | https://chenxuehu.com/article/2012/10/926.html