基本实施:
为前端创建页面(可选模板)然后将以下代码添加到functions.php
:
function login_redirect_capability() {
if ( current_user_can(\'author\') || current_user_can(\'editor\') ){
return \'url-of your custom page\';
}
}
add_filter(\'login_redirect\', \'login_redirect_capability\');
这会将它们重定向到您创建的页面。如果要将仪表板重新编码为Wordpress管理后端,可以查看
code in this plugin 看看是怎么做的。然而,如果你是新手,我强烈建议你不要这样做。后端仪表板的另一种选择是
like this.
如果你有一个需要会员的网站,我建议你使用membership plugin 这会让事情变得简单很多。