plugins – force logged in user to stay in the dashboard
Question
I want to force logged-in users to stay in the wp dashboard. If a user logs in and visits a frontend page while being logged in, he should instantly get redirected back to the dashboard. Is there any option to achieve this with a very light weighted solution?
Edited approach thanks to kero and Pat J:
function redirect_back_to_dash(){
if (is_front_page() && is_user_logged_in()){
wp_redirect(admin_url());
exit;
}
}
add_action('template_redirect', 'redirect_back_to_dash');
0
1 year
2021-11-05T10:42:05-05:00
2021-11-05T10:42:05-05:00 0 Answers
0 views
0
Leave an answer