Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何在 Wordpress 中将主题选项页面 [或] 插件选项页面设置为管理仪表板主页。
否则,我想在用户登录管理仪表板后立即登陆我的主题选项页面或插件选项页面
好的,然后使用这个:
function redirect_after_login(){ return 'http://yourwordpressurl'; } add_filter("login_redirect", "redirect_after_login", 10, 3);
钩子 login_redirect 有重定向 url,所以过滤它给它你想要的任何值。