assessment_id;
// Fetch question IDs associated with the assessment (assuming stored in 'question_ids' meta field)
$question_ids = get_post_meta( $assessment_id, 'question_ids', true );
if ( is_array( $question_ids ) && ! empty( $question_ids ) ) :
?>
' . esc_html__( 'Could not load questions for this assessment.', 'quiztech' ) . '';
// Debugging info:
// echo '
Question IDs Data: ' . esc_html( print_r( $question_ids, true ) ) . '
';
endif;
?>