PHP Code Snippets/Functions

Learndash Extract User details

Please paste this code into the functions.php file and then copy the shortcode [learndash_user_courses] onto a blank page. This will display users’ details alongside their enrolled courses, groups, specific roles, and other relevant information. // List of Users function display_users_enrolled_courses() { // Initialize the output buffer ob_start(); // Get all users $users = get_users(); foreach […]

Reusable Custom Blocks

Custom Banner Slider

To create a custom Banner Slider, please follow these steps and instructions. Note: You may modify this to suit the design and theme of your site. Insert this code into the functions.php wp_enqueue_style( ‘slick-css’, ‘https://cdnjs.cloudflare.com/ajax/libs/slick-carousel/1.9.0/slick.css’ ); wp_enqueue_script( ‘slick-js’, ‘https://cdnjs.cloudflare.com/ajax/libs/slick-carousel/1.9.0/slick.min.js’); Insert this code into the Custom Block. Note: You may modify this code to suit the […]