{"id":251,"date":"2025-10-16T12:19:17","date_gmt":"2025-10-16T12:19:17","guid":{"rendered":"https:\/\/hundehimlen.frederiklenz.dk\/?page_id=251"},"modified":"2025-10-27T08:25:10","modified_gmt":"2025-10-27T08:25:10","slug":"quiz","status":"publish","type":"page","link":"https:\/\/hundehimlen.frederiklenz.dk\/index.php\/quiz\/","title":{"rendered":"Fodertest"},"content":{"rendered":"\n<div id=\"hundehimlen-quiz\" style=\"max-width:900px;width:90%;margin:auto;padding:2em;background:#f9fafb;border-radius:16px;box-shadow:0 4px 16px rgba(0,0,0,0.1);font-family:'Inter',sans-serif;\">\n\n  <div id=\"progress\" style=\"display:flex;justify-content:center;align-items:center;margin-bottom:1.5em;\"><\/div>\n\n  <div style=\"text-align:left;\">\n    <div style=\"background:#e0ecfb;color:#1e3a8a;display:inline-block;padding:.3em .8em;border-radius:12px;font-weight:600;margin-bottom:1em;\">\n      Trin <span id=\"trin\">1<\/span> af 6\n    <\/div>\n  <\/div>\n\n  <div id=\"quiz-content\"><\/div>\n\n  <div id=\"nav-btns\" style=\"display:flex;justify-content:space-between;align-items:center;margin-top:1.5em;\">\n    <button id=\"back-btn\" style=\"background:none;border:none;color:#64748b;font-weight:600;cursor:pointer;padding:.7em 1em;border-radius:8px;visibility:hidden;\">\u2190 Tilbage<\/button>\n\n    <button id=\"next-btn\" style=\"display:flex;flex-direction:column;align-items:center;gap:4px;background:#FFD65C;border:none;border-radius:12px;padding:8px 12px;cursor:pointer;\">\n      <img decoding=\"async\" src=\"https:\/\/hundehimlen.frederiklenz.dk\/wp-content\/uploads\/2025\/10\/Pote.png\" alt=\"Videre\" style=\"height:40px;\">\n      <span id=\"next-btn-text\" style=\"font-weight:600;color:#000;font-size:0.9em;\">Videre<\/span>\n    <\/button>\n  <\/div>\n\n  <script>\n  (function(){\n    const quizData = [\n      { q: \"Hvad er navnet p\u00e5 din hund?\", type: \"navn\" },\n      { q: \"Hvor gammel er din hund?\", type: \"alder\" },\n      { q: \"Hvilken race er din hund?\", type: \"race\" },\n      { q: \"Hvad vejer din hund?\", type: \"v\u00e6gt\" },\n      { q: \"Hvordan er din hunds aktivitetsniveau?\", type: \"aktivitet\" },\n      { q: \"Har din hund allergi?\", type: \"allergi\" }\n    ];\n\n    const steps = quizData.length;\n    let step = 0;\n    const answers = {};\n    const box = document.getElementById(\"quiz-content\");\n    const nextBtn = document.getElementById(\"next-btn\");\n    const nextBtnText = document.getElementById(\"next-btn-text\");\n    const backBtn = document.getElementById(\"back-btn\");\n    const trinEl = document.getElementById(\"trin\");\n    const progress = document.getElementById(\"progress\");\n\n    const circles = [];\n    const lines = [];\n    for(let i=0;i<steps;i++){\n      const circle = document.createElement(\"div\");\n      circle.style.cssText = \"width:22px;height:22px;background:#e5e7eb;border-radius:50%;transition:background 0.3s;\";\n      progress.appendChild(circle);\n      circles.push(circle);\n      if(i<steps-1){\n        const line = document.createElement(\"div\");\n        line.style.cssText = \"width:40px;height:2px;background:#d1d5db;margin:0 6px;transition:background 0.3s;\";\n        progress.appendChild(line);\n        lines.push(line);\n      }\n    }\n\n    function updateProgress(){\n      circles.forEach((c,i)=>c.style.background = i<=step ? \"#4ade80\" : \"#e5e7eb\");\n      lines.forEach((l,i)=>l.style.background = i<step ? \"#4ade80\" : \"#d1d5db\");\n    }\n\n    function renderQuestion(){\n      if(step < quizData.length){\n        const q = quizData[step];\n        trinEl.textContent = step + 1;\n        updateProgress();\n        backBtn.style.visibility = step === 0 ? \"hidden\" : \"visible\";\n\n        nextBtnText.textContent = step === steps - 1 ? \"F\u00e5 min foderplan\" : \"Videre\";\n\n        if(q.type === \"navn\"){\n          box.innerHTML = `\n            <p><strong>${q.q}<\/strong><\/p>\n            <div style=\"display:flex;gap:10px;margin-bottom:.8em;\">\n              <button class=\"option-btn\" data-gender=\"han\" style=\"flex:1;padding:.8em;border:none;border-radius:12px;background:#bfdbfe;cursor:pointer;\">Han hedder<\/button>\n              <button class=\"option-btn\" data-gender=\"hun\" style=\"flex:1;padding:.8em;border:none;border-radius:12px;background:#bfdbfe;cursor:pointer;\">Hun hedder<\/button>\n            <\/div>\n            <input type=\"text\" id=\"dog-name\" placeholder=\"Indtast navn\" style=\"width:100%;padding:.7em;border:1px solid #cbd5e1;border-radius:12px;margin-top:.3em;\">\n          `;\n          document.querySelectorAll(\".option-btn\").forEach(btn=>{\n            btn.addEventListener(\"click\",()=>{\n              document.querySelectorAll(\".option-btn\").forEach(b=>b.style.background=\"#bfdbfe\");\n              btn.style.background=\"#60a5fa\";\n              answers.gender = btn.dataset.gender;\n            });\n          });\n        }\n\n        if(q.type === \"alder\"){\n          let years = [...Array(21).keys()].map(i=>`<option>${i}<\/option>`).join(\"\");\n          let months = [...Array(13).keys()].map(i=>`<option>${i}<\/option>`).join(\"\");\n          box.innerHTML = `\n            <p><strong>${q.q}<\/strong><\/p>\n            <label>\u00c5r:<\/label>\n            <select id=\"dog-age-year\" style=\"width:100%;padding:.7em;border:1px solid #cbd5e1;border-radius:12px;margin-top:.3em;\">${years}<\/select>\n            <label style=\"margin-top:.8em;\">M\u00e5neder:<\/label>\n            <select id=\"dog-age-month\" style=\"width:100%;padding:.7em;border:1px solid #cbd5e1;border-radius:12px;margin-top:.3em;\">${months}<\/select>\n          `;\n        }\n\n        if(q.type === \"race\"){\n          const races = [\n            \"Labrador Retriever\",\"Golden Retriever\",\"Sch\u00e6ferhund\",\"Cocker Spaniel\",\"Fransk Bulldog\",\"Beagle\",\"Boxer\",\n            \"Border Collie\",\"Pomeranian\",\"Malteser\",\"Cavalier King Charles Spaniel\",\"Jack Russell Terrier\",\n            \"Shih Tzu\",\"Australian Shepherd\",\"Dalmatiner\",\"Chihuahua\",\"Staffordshire Bull Terrier\",\"Rottweiler\",\n            \"Engelsk Springer Spaniel\",\"Bichon Fris\u00e9\",\"Shetland Sheepdog\",\"Pug (Mops)\",\"Papillon\",\"Bordoodle\",\n            \"Berner Sennenhund\",\"Sankt Bernhard\",\"Newfoundland\",\"Samojede\",\"Keeshond\",\"Kleiner M\u00fcnsterl\u00e4nder\",\n            \"Irish Setter\",\"Pointer\",\"Dv\u00e6rgschnauzer\",\"Gr\u00f8nlandshund\",\"Husky\",\"Dachshund (Gravhund)\",\n            \"Weimaraner\",\"Vizsla\",\"Basenji\",\"Akita Inu\",\"Shiba Inu\",\"Basset Hound\",\"Whippet\",\"Greyhound\",\n            \"Saluki\",\"Belgisk Malinois\",\"Tervueren\",\"Collie\",\"Flatcoated Retriever\",\"Hovawart\",\"Korth\u00e5ret H\u00f8nsehund\",\n            \"Langh\u00e5ret H\u00f8nsehund\",\"Nova Scotia Duck Tolling Retriever\",\"Parson Russell Terrier\",\"Welsh Corgi Pembroke\",\n            \"Welsh Corgi Cardigan\",\"Airedale Terrier\",\"West Highland White Terrier\",\"Fox Terrier\",\"Cairn Terrier\",\n            \"Tibetansk Spaniel\",\"Tibetansk Terrier\",\"Keeshond\",\"Lhasa Apso\",\"Boston Terrier\",\"Irish Terrier\",\n            \"Skye Terrier\",\"Gordon Setter\",\"English Setter\",\"Cane Corso\",\"Grand Danois\",\"Leonberger\",\"Mastiff\",\n            \"Bullmastiff\",\"Pyren\u00e6isk Bjergshund\",\"Alaskan Malamute\",\"Eurasier\",\"Kromfohrl\u00e4nder\",\"Cockapoo\",\"Labradoodle\"\n          ];\n          box.innerHTML = `\n            <p><strong>${q.q}<\/strong><\/p>\n            <select id=\"dog-race\" style=\"width:100%;padding:.7em;border:1px solid #cbd5e1;border-radius:12px;margin-top:.3em;\">\n              ${races.map(r=>`<option>${r}<\/option>`).join(\"\")}\n            <\/select>\n          `;\n          const dropdown = document.getElementById(\"dog-race\");\n          dropdown.addEventListener(\"change\", ()=>{ answers.race = dropdown.value; });\n          answers.race = dropdown.value;\n        }\n\n        if(q.type === \"v\u00e6gt\"){\n          box.innerHTML = `\n            <p><strong>${q.q}<\/strong><\/p>\n            <div style=\"display:flex;align-items:center;gap:12px;justify-content:center;margin-top:1em;\">\n              <button id=\"weight-down\" style=\"background:#e5e7eb;border:none;border-radius:50%;width:36px;height:36px;font-size:1.3em;cursor:pointer;\">\u2013<\/button>\n              <span id=\"dog-weight\" style=\"font-size:1.3em;font-weight:600;\">10<\/span> kg\n              <button id=\"weight-up\" style=\"background:#e5e7eb;border:none;border-radius:50%;width:36px;height:36px;font-size:1.3em;cursor:pointer;\">+<\/button>\n            <\/div>\n          `;\n          answers.weight = 10;\n          document.getElementById(\"weight-up\").onclick=()=>{ if(answers.weight<100){ answers.weight++; document.getElementById(\"dog-weight\").textContent=answers.weight; } };\n          document.getElementById(\"weight-down\").onclick=()=>{ if(answers.weight>0){ answers.weight--; document.getElementById(\"dog-weight\").textContent=answers.weight; } };\n        }\n\n        if(q.type === \"aktivitet\"){\n          const options = [\"< 30 min\",\"30 min - 1 time\",\"1 - 2 timer\"];\n          box.innerHTML = `<p><strong>${q.q}<\/strong><\/p>` + options.map(o=>`<button class=\"option-btn\" style=\"display:block;width:100%;margin:.4em 0;padding:.8em;border:none;border-radius:12px;background:#bfdbfe;cursor:pointer;\">${o}<\/button>`).join(\"\");\n          document.querySelectorAll(\".option-btn\").forEach(btn=>{\n            btn.addEventListener(\"click\",()=>{\n              document.querySelectorAll(\".option-btn\").forEach(b=>b.style.background=\"#bfdbfe\");\n              btn.style.background=\"#60a5fa\";\n              answers.activity = btn.textContent;\n            });\n          });\n        }\n\n        if(q.type === \"allergi\"){\n          box.innerHTML = `<p><strong>${q.q}<\/strong><\/p>\n            <button class=\"option-btn\" style=\"display:block;width:100%;margin:.4em 0;padding:.8em;border:none;border-radius:12px;background:#bfdbfe;cursor:pointer;\">Ja<\/button>\n            <button class=\"option-btn\" style=\"display:block;width:100%;margin:.4em 0;padding:.8em;border:none;border-radius:12px;background:#bfdbfe;cursor:pointer;\">Nej<\/button>`;\n          document.querySelectorAll(\".option-btn\").forEach(btn=>{\n            btn.addEventListener(\"click\",()=>{\n              document.querySelectorAll(\".option-btn\").forEach(b=>b.style.background=\"#bfdbfe\");\n              btn.style.background=\"#60a5fa\";\n              answers.allergy = btn.textContent;\n            });\n          });\n        }\n\n      } else {\n        renderResult();\n      }\n    }\n\n    nextBtn.addEventListener(\"click\",()=>{\n      saveStepData();\n      if(step < steps){ step++; renderQuestion(); }\n      else renderResult();\n    });\n\n    backBtn.addEventListener(\"click\",()=>{ if(step > 0){ step--; renderQuestion(); } });\n\n    function saveStepData(){\n      const q = quizData[step];\n      if(q.type === \"navn\"){ answers.name = document.getElementById(\"dog-name\")?.value; }\n      if(q.type === \"alder\"){ answers.ageYear = document.getElementById(\"dog-age-year\")?.value; answers.ageMonth = document.getElementById(\"dog-age-month\")?.value; }\n      if(q.type === \"race\"){ answers.race = document.getElementById(\"dog-race\")?.value; }\n    }\n\n    function renderResult(){\n      trinEl.textContent = \"\u2713\";\n      updateProgress();\n      backBtn.style.visibility = \"hidden\";\n      nextBtn.style.display = \"none\";\n\n      const name = answers.name?.trim() || \"din hund\";\n\n      box.innerHTML = `\n        <h2 style=\"font-size:1.5em;margin-bottom:1em;\">Din pr\u00f8vepakke<\/h2>\n\n        <div style=\"background:#fff;border-radius:12px;box-shadow:0 2px 6px rgba(0,0,0,0.1);padding:1em;margin-bottom:1em;display:flex;align-items:center;justify-content:space-between;\">\n          <div style=\"display:flex;align-items:center;gap:12px;\">\n            <img decoding=\"async\" src=\"https:\/\/hundehimlen.frederiklenz.dk\/wp-content\/uploads\/2025\/10\/image-29.png\" style=\"width:60px;height:60px;border-radius:8px;\">\n            <div>\n              <strong>Pr\u00f8vepakke til ${name}<\/strong><br>\n              <small>1 kg foder<\/small>\n            <\/div>\n          <\/div>\n          <div style=\"text-align:right;\">\n            <span style=\"background:#324617;color:#fff;font-size:0.8em;font-weight:700;padding:4px 8px;border-radius:6px;\">GRATIS<\/span><br>\n            <strong style=\"display:block;margin-top:4px;\">0 kr<\/strong>\n          <\/div>\n        <\/div>\n\n        <div style=\"background:#fff;border-radius:12px;box-shadow:0 2px 6px rgba(0,0,0,0.1);padding:1em;margin-bottom:1em;\">\n          <strong>Ingen binding eller forpligtelse<\/strong>\n          <p style=\"margin-top:.4em;\">Test om ${name} kan lide foderet f\u00f8rst. Abonnementet starter automatisk om 14 dage, men du kan til enhver tid annullere eller \u00e6ndre din leveringsplan.<\/p>\n        <\/div>\n\n        <!-- To bokse for prisforklaring -->\n        <div style=\"display:flex;gap:1em;flex-wrap:wrap;margin-bottom:1.5em;\">\n          <div style=\"flex:1;background:#fff;border-radius:12px;box-shadow:0 2px 6px rgba(0,0,0,0.1);padding:1em;text-align:center;\">\n            <strong>F\u00f8rste levering<\/strong>\n            <p style=\"margin:.4em 0;\">Kun fragt<\/p>\n            <p style=\"font-size:1.2em;font-weight:700;\">39 kr<\/p>\n            <small>Pr\u00f8vepakke til ${name}<\/small>\n          <\/div>\n\n          <div style=\"flex:1;background:#f3f4f6;border-radius:12px;box-shadow:0 2px 6px rgba(0,0,0,0.05);padding:1em;text-align:center;\">\n            <strong>Efterf\u00f8lgende leveringer<\/strong>\n            <p style=\"margin:.4em 0;\">Foderplan til ${name}<\/p>\n            <p style=\"font-size:1.2em;font-weight:700;\">308 kr. pr. m\u00e5ned<\/p>\n            <small>Du kan altid \u00e6ndre eller afmelde<\/small>\n          <\/div>\n        <\/div>\n\n        <div style=\"display:flex;justify-content:center;gap:1em;margin-top:1.2em;flex-wrap:wrap;\">\n          <a href=\"https:\/\/hundehimlen.frederiklenz.dk\" style=\"display:inline-block;background:#e5e7eb;color:#111827;font-weight:600;border-radius:12px;padding:.8em 1.6em;text-decoration:none;\">Til forsiden<\/a>\n          <a href=\"https:\/\/hundehimlen.frederiklenz.dk\/index.php\/vare-kategori\/foder\/\" style=\"display:inline-block;background:#76BAF1;color:#fff;font-weight:600;border-radius:12px;padding:.8em 1.6em;text-decoration:none;\">Bestil nu \u2192<\/a>\n        <\/div>\n      `;\n    }\n\n    renderQuestion();\n  })();\n  <\/script>\n<\/div>\n","protected":false},"excerpt":{"rendered":"<p>Trin 1 af 6 \u2190 Tilbage Videre<\/p>\n","protected":false},"author":3,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"_uag_custom_page_level_css":"","footnotes":""},"class_list":["post-251","page","type-page","status-publish","hentry"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.2 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Fodertest - Hundehimlen<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/hundehimlen.frederiklenz.dk\/index.php\/quiz\/\" \/>\n<meta property=\"og:locale\" content=\"da_DK\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Fodertest - Hundehimlen\" \/>\n<meta property=\"og:description\" content=\"Trin 1 af 6 \u2190 Tilbage Videre\" \/>\n<meta property=\"og:url\" content=\"https:\/\/hundehimlen.frederiklenz.dk\/index.php\/quiz\/\" \/>\n<meta property=\"og:site_name\" content=\"Hundehimlen\" \/>\n<meta property=\"article:modified_time\" content=\"2025-10-27T08:25:10+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/hundehimlen.frederiklenz.dk\/wp-content\/uploads\/2025\/10\/Pote.png\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Estimeret l\u00e6setid\" \/>\n\t<meta name=\"twitter:data1\" content=\"1 minut\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/hundehimlen.frederiklenz.dk\/index.php\/quiz\/\",\"url\":\"https:\/\/hundehimlen.frederiklenz.dk\/index.php\/quiz\/\",\"name\":\"Fodertest - Hundehimlen\",\"isPartOf\":{\"@id\":\"https:\/\/hundehimlen.frederiklenz.dk\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/hundehimlen.frederiklenz.dk\/index.php\/quiz\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/hundehimlen.frederiklenz.dk\/index.php\/quiz\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/hundehimlen.frederiklenz.dk\/wp-content\/uploads\/2025\/10\/Pote.png\",\"datePublished\":\"2025-10-16T12:19:17+00:00\",\"dateModified\":\"2025-10-27T08:25:10+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/hundehimlen.frederiklenz.dk\/index.php\/quiz\/#breadcrumb\"},\"inLanguage\":\"da-DK\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/hundehimlen.frederiklenz.dk\/index.php\/quiz\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"da-DK\",\"@id\":\"https:\/\/hundehimlen.frederiklenz.dk\/index.php\/quiz\/#primaryimage\",\"url\":\"https:\/\/hundehimlen.frederiklenz.dk\/wp-content\/uploads\/2025\/10\/Pote.png\",\"contentUrl\":\"https:\/\/hundehimlen.frederiklenz.dk\/wp-content\/uploads\/2025\/10\/Pote.png\",\"width\":71,\"height\":56},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/hundehimlen.frederiklenz.dk\/index.php\/quiz\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Hjem\",\"item\":\"https:\/\/hundehimlen.frederiklenz.dk\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Fodertest\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/hundehimlen.frederiklenz.dk\/#website\",\"url\":\"https:\/\/hundehimlen.frederiklenz.dk\/\",\"name\":\"Hundehimlen\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/hundehimlen.frederiklenz.dk\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/hundehimlen.frederiklenz.dk\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"da-DK\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/hundehimlen.frederiklenz.dk\/#organization\",\"name\":\"Hundehimlen\",\"url\":\"https:\/\/hundehimlen.frederiklenz.dk\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"da-DK\",\"@id\":\"https:\/\/hundehimlen.frederiklenz.dk\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/hundehimlen.frederiklenz.dk\/wp-content\/uploads\/2025\/10\/hundehimlenlogoH.png\",\"contentUrl\":\"https:\/\/hundehimlen.frederiklenz.dk\/wp-content\/uploads\/2025\/10\/hundehimlenlogoH.png\",\"width\":473,\"height\":576,\"caption\":\"Hundehimlen\"},\"image\":{\"@id\":\"https:\/\/hundehimlen.frederiklenz.dk\/#\/schema\/logo\/image\/\"}}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Fodertest - Hundehimlen","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/hundehimlen.frederiklenz.dk\/index.php\/quiz\/","og_locale":"da_DK","og_type":"article","og_title":"Fodertest - Hundehimlen","og_description":"Trin 1 af 6 \u2190 Tilbage Videre","og_url":"https:\/\/hundehimlen.frederiklenz.dk\/index.php\/quiz\/","og_site_name":"Hundehimlen","article_modified_time":"2025-10-27T08:25:10+00:00","og_image":[{"url":"https:\/\/hundehimlen.frederiklenz.dk\/wp-content\/uploads\/2025\/10\/Pote.png","type":"","width":"","height":""}],"twitter_card":"summary_large_image","twitter_misc":{"Estimeret l\u00e6setid":"1 minut"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/hundehimlen.frederiklenz.dk\/index.php\/quiz\/","url":"https:\/\/hundehimlen.frederiklenz.dk\/index.php\/quiz\/","name":"Fodertest - Hundehimlen","isPartOf":{"@id":"https:\/\/hundehimlen.frederiklenz.dk\/#website"},"primaryImageOfPage":{"@id":"https:\/\/hundehimlen.frederiklenz.dk\/index.php\/quiz\/#primaryimage"},"image":{"@id":"https:\/\/hundehimlen.frederiklenz.dk\/index.php\/quiz\/#primaryimage"},"thumbnailUrl":"https:\/\/hundehimlen.frederiklenz.dk\/wp-content\/uploads\/2025\/10\/Pote.png","datePublished":"2025-10-16T12:19:17+00:00","dateModified":"2025-10-27T08:25:10+00:00","breadcrumb":{"@id":"https:\/\/hundehimlen.frederiklenz.dk\/index.php\/quiz\/#breadcrumb"},"inLanguage":"da-DK","potentialAction":[{"@type":"ReadAction","target":["https:\/\/hundehimlen.frederiklenz.dk\/index.php\/quiz\/"]}]},{"@type":"ImageObject","inLanguage":"da-DK","@id":"https:\/\/hundehimlen.frederiklenz.dk\/index.php\/quiz\/#primaryimage","url":"https:\/\/hundehimlen.frederiklenz.dk\/wp-content\/uploads\/2025\/10\/Pote.png","contentUrl":"https:\/\/hundehimlen.frederiklenz.dk\/wp-content\/uploads\/2025\/10\/Pote.png","width":71,"height":56},{"@type":"BreadcrumbList","@id":"https:\/\/hundehimlen.frederiklenz.dk\/index.php\/quiz\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Hjem","item":"https:\/\/hundehimlen.frederiklenz.dk\/"},{"@type":"ListItem","position":2,"name":"Fodertest"}]},{"@type":"WebSite","@id":"https:\/\/hundehimlen.frederiklenz.dk\/#website","url":"https:\/\/hundehimlen.frederiklenz.dk\/","name":"Hundehimlen","description":"","publisher":{"@id":"https:\/\/hundehimlen.frederiklenz.dk\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/hundehimlen.frederiklenz.dk\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"da-DK"},{"@type":"Organization","@id":"https:\/\/hundehimlen.frederiklenz.dk\/#organization","name":"Hundehimlen","url":"https:\/\/hundehimlen.frederiklenz.dk\/","logo":{"@type":"ImageObject","inLanguage":"da-DK","@id":"https:\/\/hundehimlen.frederiklenz.dk\/#\/schema\/logo\/image\/","url":"https:\/\/hundehimlen.frederiklenz.dk\/wp-content\/uploads\/2025\/10\/hundehimlenlogoH.png","contentUrl":"https:\/\/hundehimlen.frederiklenz.dk\/wp-content\/uploads\/2025\/10\/hundehimlenlogoH.png","width":473,"height":576,"caption":"Hundehimlen"},"image":{"@id":"https:\/\/hundehimlen.frederiklenz.dk\/#\/schema\/logo\/image\/"}}]}},"uagb_featured_image_src":{"full":false,"thumbnail":false,"medium":false,"medium_large":false,"large":false,"1536x1536":false,"2048x2048":false,"woocommerce_thumbnail":false,"woocommerce_single":false,"woocommerce_gallery_thumbnail":false},"uagb_author_info":{"display_name":"Anton \u00d8rum Oca\u00f1a","author_link":"https:\/\/hundehimlen.frederiklenz.dk\/index.php\/author\/anton\/"},"uagb_comment_info":0,"uagb_excerpt":"Trin 1 af 6 \u2190 Tilbage Videre","_links":{"self":[{"href":"https:\/\/hundehimlen.frederiklenz.dk\/index.php\/wp-json\/wp\/v2\/pages\/251","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/hundehimlen.frederiklenz.dk\/index.php\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/hundehimlen.frederiklenz.dk\/index.php\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/hundehimlen.frederiklenz.dk\/index.php\/wp-json\/wp\/v2\/users\/3"}],"replies":[{"embeddable":true,"href":"https:\/\/hundehimlen.frederiklenz.dk\/index.php\/wp-json\/wp\/v2\/comments?post=251"}],"version-history":[{"count":27,"href":"https:\/\/hundehimlen.frederiklenz.dk\/index.php\/wp-json\/wp\/v2\/pages\/251\/revisions"}],"predecessor-version":[{"id":942,"href":"https:\/\/hundehimlen.frederiklenz.dk\/index.php\/wp-json\/wp\/v2\/pages\/251\/revisions\/942"}],"wp:attachment":[{"href":"https:\/\/hundehimlen.frederiklenz.dk\/index.php\/wp-json\/wp\/v2\/media?parent=251"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}