我正在尝试在Wordpress上的 Learndash LMS中创建当前课程的所有课程和测验的列表。但是,我只能使用以下代码显示未分配给特定课程的测验(=全局测验)。我想显示每节课的分配测验。有任何想法吗?谢谢!
<?php foreach ( $lessons as $lesson ) : ?>
<!-- here I call the link and title of the lesson, removed for readability -->
<?php foreach ( $quizzes as $quiz ) : ?>
<a href='<?php echo learndash_get_step_permalink( $quiz['post']->ID, $course_id ); ?>
<?php echo $quiz['post']->post_title; ?>
</a>
<?php endforeach; ?>
<?php endforeach; ?>