‘;
}
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(); ?>