“>
; const quizContainer = document.getElementById("quiz-"); const resultContainer = document.getElementById("result-"); const submitButton = document.getElementById("submit-"); const nextButton = document.getElementById("next-"); function buildQuiz() { const output = quizData.map((q, i) => { const answers = Object.entries(q.answers).map(([l, t]) => ` `).join(""); return `
${i+1}. ${q.question}
${answers}
`; }).join(""); quizContainer.innerHTML = output; } function showResults() { const answerContainers = quizContainer.querySelectorAll(".answers"); let score = 0; quizData.forEach((q, i) => { const selected = (answerContainers[i].querySelector("input[name=q"+i+"]:checked") || {}).value; if (selected === q.correct) score++; }); resultContainer.innerHTML = `Je scoorde ${score} van de ${quizData.length} punten! ⚽`; localStorage.setItem("score_", score); if (nextButton) nextButton.style.display = "block"; } buildQuiz(); submitButton.addEventListener("click", showResults); });

Welkom bij de Grote Voetbalquiz!

⚽ Test je voetbalkennis in drie rondes en ontdek hoeveel jij echt weet over de Champions League, het WK & EK, en de Eredivisie!

  1. Champions League Quiz
  2. WK & EK Quiz
  3. Eredivisie Quiz

Klaar? Begin hieronder!

‘; } add_shortcode(‘voetbalquiz_home’, ‘voetbalquiz_home_shortcode’); // ———- PAGINA 2: CHAMPIONS LEAGUE ———- function voetbalquiz_round1_shortcode() { $quiz = [ [“question”=>”Welke club won de Champions League in 2023?”, “answers”=>[“a”=>”Manchester City”,”b”=>”Real Madrid”,”c”=>”Inter Milan”], “correct”=>”a”], [“question”=>”Wie maakte het winnende doelpunt in de finale van 2012?”, “answers”=>[“a”=>”Didier Drogba”,”b”=>”Arjen Robben”,”c”=>”Messi”], “correct”=>”a”], [“question”=>”Welke club heeft de meeste Champions League-titels?”, “answers”=>[“a”=>”AC Milan”,”b”=>”Real Madrid”,”c”=>”Liverpool”], “correct”=>”b”] ]; return voetbalquiz_template($quiz, “Champions League Quiz”, “/quiz-2-wk-ek/”); } add_shortcode(‘voetbalquiz_round1’, ‘voetbalquiz_round1_shortcode’); // ———- PAGINA 3: WK & EK ———- function voetbalquiz_round2_shortcode() { $quiz = [ [“question”=>”Wie won het WK in 2018?”, “answers”=>[“a”=>”Duitsland”,”b”=>”Frankrijk”,”c”=>”Brazilië”], “correct”=>”b”], [“question”=>”Waar werd het EK 2021 gespeeld?”, “answers”=>[“a”=>”In één land”,”b”=>”Verspreid over Europa”,”c”=>”Alleen in Engeland”], “correct”=>”b”], [“question”=>”Wie werd topscorer op het WK 2022?”, “answers”=>[“a”=>”Kylian Mbappé”,”b”=>”Lionel Messi”,”c”=>”Cristiano Ronaldo”], “correct”=>”a”] ]; return voetbalquiz_template($quiz, “WK & EK Quiz”, “/quiz-3-eredivisie/”); } add_shortcode(‘voetbalquiz_round2’, ‘voetbalquiz_round2_shortcode’); // ———- PAGINA 4: EREDIVISIE ———- function voetbalquiz_round3_shortcode() { $quiz = [ [“question”=>”Welke club heeft de meeste Eredivisie-titels?”, “answers”=>[“a”=>”Feyenoord”,”b”=>”Ajax”,”c”=>”PSV”], “correct”=>”b”], [“question”=>”Wie was topscorer van het seizoen 2022-2023?”, “answers”=>[“a”=>”Xavi Simons”,”b”=>”Santiago Giménez”,”c”=>”Steven Bergwijn”], “correct”=>”a”], [“question”=>”Welke club speelt in De Grolsch Veste?”, “answers”=>[“a”=>”FC Twente”,”b”=>”NEC Nijmegen”,”c”=>”AZ Alkmaar”], “correct”=>”a”] ]; return voetbalquiz_template($quiz, “Eredivisie Quiz”, “/scoreoverzicht/”); } add_shortcode(‘voetbalquiz_round3’, ‘voetbalquiz_round3_shortcode’); // ———- PAGINA 5: SCOREOVERZICHT ———- function voetbalquiz_score_shortcode() { ob_start(); ?>

🏆 Eindscore