替换WordPress登陆后的默认首页
WordPress登陆后默认显示的”仪表盘“页面,也就是之前所说的”控制板“页面,其实这个”仪表盘“页面实际意义真的不大,现在我想登陆后就直接显示”所有文章“页面(或者是后台任何页面吧),该如何操作呢?
其实操作也很简单,使用文本编辑器打开当前主题目录下的functions.php,在末尾加上以下php代码:
1function my_login_redirect($redirect_to, $request){
2 if( empty( $redirect_to ) || $redirect_to == 'wp-admin/' || $redirect_to == admin_url() )
3 return home_url("/wp-admin/edit.php");
4 else
5 return $redirect_to;
6}
7add_filter("login_redirect", "my_login_redirect", 10, 3);
其中home_url行后面的wp-admin/edit.php就是登陆后要跳转的后台页面地址,这里设置成所有文章页面,如果你想登陆后跳转到写文章页面,可以改成:/wp-admin/post-new.php,其他的依此类推。
注:上在的设置是针对根目录而言的,如果的wordpress上面还有/blog下面装的wordpress 。而/是根目录,而需要将"/wp-admin/edit.php"改为"/blog/wp-admin/edit.php" 。
当然,还有更狠的方法,就是修改wp-admin/index.php文件。将其中的将第一个 <?php改为:
1<?php header("Location: http://…/wp-admin/edit.php");
2exit();
3>
不过不推荐这种方法。因为该方法将造成后续的升级还要改回去。
捐赠本站(Donate)
如您感觉文章有用,可扫码捐赠本站!(If the article useful, you can scan the QR code to donate))
- Author: shisekong
- Link: https://blog.361way.com/chang-admin-index/1636.html
- License: This work is under a 知识共享署名-非商业性使用-禁止演绎 4.0 国际许可协议. Kindly fulfill the requirements of the aforementioned License when adapting or creating a derivative of this work.