我正在WordPress网站上使用LearnDash,并创建了以下代码片段以获取所有课程的列表:
function get_list_of_lessons_class(){
$args = array(
\'post_type\' => \'sfwd-lessons\',
\'posts_per_page\' => -1,
\'post_status\' => \'publish\',
);
$q = new WP_Query($args);
if ($q->have_posts()) :
while ($q->have_posts()) : $q->the_post();
the_title();
endwhile;
else:
;
wp_reset_postdata();
endif;
return $finalout;
}
add_shortcode(\'get_list_of_lessons\', \'get_list_of_lessons_class\');
有人能建议如何在课程标题旁边显示每节课的课程标题吗?
非常感谢。