Skip to content

Instantly share code, notes, and snippets.

@MrVibe
Created August 29, 2019 12:36
Show Gist options
  • Save MrVibe/b248dc442810c67d76696142d02c2235 to your computer and use it in GitHub Desktop.
Save MrVibe/b248dc442810c67d76696142d02c2235 to your computer and use it in GitHub Desktop.
WPML Instructor course count
add_filter('wplms_get_instructor_course_count',function($count,$user_id){
$args = array(
'posts_per_page' => -1,
'post_type' => 'course',
'post_author'=>$user_id,
'suppress_filters' => false
);
$result = new WP_Query($args);
return $result->post_count;
},10,2);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment