This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$shortcode_course = '[course_content course_id="'.$course_id.'"]'; | |
// echo LearnDash lessons from course_id | |
echo do_shortcode("$shortcode_course" ); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//Here we get an array of related LearnDash courses related to a WC_Product | |
$courses_id = get_post_meta( $product->get_id(), '_related_course',true); |