%PDF- %PDF-
Direktori : /var/www/html/itworks/wp-content/themes/eduma/learnpress-v1/profile/tabs/ |
Current File : /var/www/html/itworks/wp-content/themes/eduma/learnpress-v1/profile/tabs/quizzes.php |
<?php /** * Template for displaying the quizzes in profile * * @author ThimPress * @package LearnPress/Templates * @version 1.0 */ defined( 'ABSPATH' ) || exit(); global $post; $args = array(); $quizzes = learn_press_get_quizzes( $user->id, $args ); ?> <?php if ( $quizzes ) : ?> <ul> <?php foreach ( $quizzes as $post ) { setup_postdata( $post ); ?> <?php learn_press_get_template( 'profile/quiz-content.php', array( 'user' => $user ) ); ?> <?php } ?> </ul> <?php else : ?> <?php learn_press_display_message( esc_html__( 'No records.', 'eduma' ), 'notice' );?> <?php endif; ?> <?php wp_reset_postdata();?>