LifterLMS 로그인후 소셜 프로필로 이동

LifterLMS 로그인후 소셜 프로필로 이동

LifterLMS 로그인에서 학생들을 Social Learning 프로필로 이동시키려면, 밑의 짧은 코드를 테마 또는 자식 테마의 functions.php 파일 또는 사용자 지정 플러그인에 추가할 수 있습니다.

<?php // don't copy this to your functions.php file

/**
 * Redirect users to their LifterLMS Social Learning Profile on Login
 * @param    string   $url      default LLMS login url
 * @param    int      $user_id  WP User ID of the user who logged in
 * @return   string
 */
function my_llms_student_dashboard_login_redirect( $url, $user_id ) {
	if ( function_exists( 'llms_sl_get_student_profile_url' ) ) {
		$url = llms_sl_get_student_profile_url( $user_id );
	}
	return $url;
}
add_filter( 'lifterlms_login_redirect', 'my_llms_student_dashboard_login_redirect', 999, 2 );

원문: https://lifterlms.com/docs/redirect-social-profile-lifterlms-login/

코멘트 제출

Don`t copy text!