Skip to content

Instantly share code, notes, and snippets.

View kaifahmad111's full-sized avatar

Kaif Ahmad kaifahmad111

  • Infoseek
  • Lucknow, India
View GitHub Profile
@wpacademy
wpacademy / learnpress-enroll-status.php
Last active August 30, 2022 06:06
Check if user has enrolled into any course at your LearnPress website.
<?php
/*
* Function to check if given user is enrolled into any course.
*/
function wpac_check_enrolled_user($user_id){
if (is_numeric($user_id)) {
//Global WordPress DB object
global $wpdb;