NIUCLOUD是一款SaaS管理后台框架多应用插件+云编译。上千名开发者、服务商正在积极拥抱开发者生态。欢迎开发者们免费入驻。一起助力发展! 广告
``` // redirect user after login not to go to profile, but elsewhere // combination of http://www.shinephp.com/how-to-block-wordpress-admin-menu-item/ and // http://www.strangework.com/2010/03/26/how-to-redirect-a-user-after-logging-into-wordpress/ if ( current_user_can( 'subscriber' ) ) { function so_redirect_after_login() { global $redirect_to; if ( !isset( $_GET['redirect_to'] ) ) { $redirect_to = ( get_option( 'siteurl' ) . '/wp-admin/rest-of-url' ); } } add_action( 'login_form', 'so_redirect_after_login' ); } ```