打开当前主题的 functions.php 文件,路径为:网站目录/wp-content/themes/主题名称/functions.php
在末尾加上以下内容:
add_action('login_enqueue_scripts','login_protection');
function login_protection(){
if($_GET['word'] != 'press')header('Location: http://www.exampele.com/');
}
word和press字段还有https://www.exampele.com均可自定义。
如果有人直接访问https://www.exampele.com/wp-login.php就会跳转到https://www.exampele.com。
这样启用后,后台的唯一登录地址就是https://www.exampele.com/wp-login.php?word=press