| Current Path : /home/ereika83/www/wp-content/plugins/sfwd-lms/themes/ld30/templates/ |
| Current File : /home/ereika83/www/wp-content/plugins/sfwd-lms/themes/ld30/templates/course_registered_rows.php |
<?php
/**
* LearnDash LD30 Displays course progress rows for a user
*
* Available:
* $courses_registered: course registered to the user
* $shortcode_atts: Attributes used in shortcode
*
* @since 3.0.0
*
* @package LearnDash\Templates\LD30
*/
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
if ( $courses_registered ) {
foreach ( $courses_registered as $course_id ) {
?>
<div class='ld-course-info-my-courses'>
<?php
if ( ( isset( $shortcode_atts['registered_show_thumbnail'] ) ) && ( 'true' === $shortcode_atts['registered_show_thumbnail'] ) ) {
echo get_the_post_thumbnail( $course_id );
}
?>
<h2 class="ld-entry-title entry-title"><a href="<?php echo esc_url( get_permalink( $course_id ) ); ?>" rel="bookmark"><?php echo wp_kses_post( get_the_title( $course_id ) ); ?></a></h2>
</div>
<?php
}
}