Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

learndash

$meta_query = array(
	'relation' => 'AND',
	array(
		'key'     => 'course_id',
		'value'   => '$course_id',
		'compare' => '=',
		'type'    => 'NUMERIC',
	),
	array(
		'key'     => 'quiz_id',
		'value'   => '$quiz_id',
		'compare' => '=',
		'type'    => 'NUMERIC',
	),
	array(
		'key'     => 'quiz_pro_id',
		'value'   => '$quiz_pro_id',
		'compare' => '=',
		'type'    => 'NUMERIC',
	),
	array(
		'key'     => 'question_id',
		'value'   => '$question_id',
		'compare' => '=',
		'type'    => 'NUMERIC',
	),
);