Viewing 1 replies (of 1 total)
  • Plugin Contributor Ken Nguyen

    (@kendy73)

    Dear themexpress,

    If you want to get a profile link, you should use the hook ‘learn_press_instructor_profile_link’ because we want to make it easy expandable and compatible with other profile system (like BuddyPress).

    Here is how to do it:

    <?php echo apply_filters( 'learn_press_instructor_profile_link', '#', $user_id, $course_id ); ?>

    In your case:

    <?php echo apply_filters( 'learn_press_instructor_profile_link', '#', $user_id = null, get_the_ID() ); ?>

    Let me know if you have any further questions. Thanks.

    Ken

Viewing 1 replies (of 1 total)
  • The topic ‘Issue of learn_press_get_profile_link’ is closed to new replies.