Advertisement
verygoodplugins

Untitled

Feb 4th, 2019
221
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.52 KB | None | 0 0
  1. function add_last_step_field( $meta_fields ) {
  2.  
  3.     $meta_fields['course_last_step_title'] = array( 'label' => 'Course Last Step', 'type' => 'text', 'group' => 'other' );
  4.     return $meta_fields;
  5.  
  6. }
  7.  
  8. add_filter( 'wpf_meta_fields', 'add_last_step_field' );
  9.  
  10.  
  11. function sync_last_step_field( $data ) {
  12.  
  13.     $title = get_the_title( $data['lesson']->ID );
  14.  
  15.     wp_fusion()->user->push_user_meta( $data['user']->ID, array( 'course_last_step_title' => $title ) );
  16.  
  17. }
  18.  
  19. add_action( 'learndash_lesson_completed', 'sync_last_step_field', 2 );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement