Skip to content

Instantly share code, notes, and snippets.

@weishai
Last active December 17, 2015 19:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save weishai/5663870 to your computer and use it in GitHub Desktop.
Save weishai/5663870 to your computer and use it in GitHub Desktop.
修改wordpress默认登录地址
<?php
/* 修改wordpress默认登录地址 */
function wb_redir_login() {
wp_redirect(home_url('/').'/login'); //这个地址可以随意修改
exit;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment