Wordpress重定向未登录的访问者
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Wordpress重定向未登录的访问者相关的知识,希望对你有一定的参考价值。
Place at the top of your header.php to redirect visitors who are not logged-in to the Wordpress admin. I use this to redirect to a simple html 'coming soon' page while sites are in development.
<?php if (!is_user_logged_in()) { wp_redirect('http://mydomain.com/coming-soon.html', 302); } ?>
以上是关于Wordpress重定向未登录的访问者的主要内容,如果未能解决你的问题,请参考以下文章