Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- function sync_course_view() {
- if ( ! function_exists( 'wp_fusion' ) ) {
- return;
- }
- if ( ! is_user_logged_in() ) {
- return;
- }
- global $post;
- if ( empty( $post ) ) {
- return;
- }
- if ( 'sfwd-courses' !== $post->post_type ) {
- return;
- }
- update_user_meta( get_current_user_id(), 'ld_last_course_progressed', $post->post_title );
- }
- add_action( 'wp_footer', 'sync_course_view' );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement