/** * نمایش درسهای فقط دوره فعلی LearnDash * استفاده در Elementor: * [current_course_lessons] */ function negar_current_course_lessons_shortcode($atts) { // بررسی وجود LearnDash if ( ! function_exists('learndash_get_course_id') ) { return ''; } // پیدا کردن دوره فعلی $course_id = learndash_get_course_id(get_the_ID()); // اگر خود صفحه، صفحه Course باشد if ( ! $course_id && get_post_type(get_the_ID()) === 'sfwd-courses' ) { $course_id = get_the_ID(); } $course_id = absint($course_id); // اگر دوره پیدا نشد if ( ! $course_id ) { return ''; } // نمایش فقط درسهای همین دوره return do_shortcode( '[ld_lesson_list course_id="' . $course_id . '" orderby="menu_order" order="ASC"]' ); } add_shortcode( 'current_course_lessons', 'negar_current_course_lessons_shortcode' );