{"id":308543,"date":"2026-07-23T03:47:05","date_gmt":"2026-07-23T03:47:05","guid":{"rendered":"https:\/\/digitalmarketstore.com\/?page_id=308543"},"modified":"2026-07-24T03:28:44","modified_gmt":"2026-07-24T03:28:44","slug":"trivia-3-business-killers","status":"publish","type":"page","link":"https:\/\/digitalmarketstore.com\/trivia-3-business-killers\/","title":{"rendered":"Trivia 3 Business Killers"},"content":{"rendered":"<div class=\"et_pb_section_0 et_pb_section et_section_regular et_block_section\">\n<div class=\"et_pb_row_0 et_pb_row et_flex_row\">\n<div class=\"et_pb_column_0 et_pb_column et-last-child et_flex_column et_pb_css_mix_blend_mode_passthrough et_flex_column_24_24 et_flex_column_24_24_tablet et_flex_column_24_24_phone\">\n<div class=\"et_pb_code_0 et_pb_code et_pb_module\"><div class=\"et_pb_code_inner\"><div id=\"business-killer-quiz\"><\/div>\n\n<script>\n\/\/ =====================================================\n\/\/  FULL GAME ENGINE \u2014 DYNAMIC JSON FETCH + 10 QUESTIONS\n\/\/ =====================================================\n\nlet questionsBase = [];\nlet questions = [];\nlet difficulty = \"easy\";\nlet mode = \"menu\";\nlet score = 0;\nlet streak = 0;\nlet bestStreak = 0;\nlet asked = [];\nlet wrong = [];\nlet autoplayIndex = 0;\nlet timer = null;\nlet timeLeft = 20;\nlet powerUp = null;\nlet categoryStats = { Traffic: 0, Offer: 0, Systems: 0 };\nlet categoryCorrect = { Traffic: 0, Offer: 0, Systems: 0 };\nlet bonusUsed = false;\n\n\/\/ Automatically fetch your 120kb questions.json file on load\nwindow.addEventListener(\"DOMContentLoaded\", () => {\n    fetch(\"\/wp-content\/uploads\/2026\/07\/questions.json\")\n        .then(response => {\n            if (!response.ok) throw new Error(\"Network response was not ok\");\n            return response.json();\n        })\n        .then(data => {\n            if (Array.isArray(data)) {\n                questionsBase = data;\n            } else {\n                \/\/ Flatten object categories (easy, medium, hard) into a single array\n                let combined = [];\n                if (data.easy) combined = combined.concat(data.easy);\n                if (data.medium) combined = combined.concat(data.medium);\n                if (data.hard) combined = combined.concat(data.hard);\n                questionsBase = combined.length > 0 ? combined : [];\n            }\n            showMenu();\n        })\n        .catch(error => {\n            console.warn(\"Failed to load external JSON, initializing with fallback dataset:\", error);\n            \/\/ Fallback questions if network fetch fails\n            questionsBase = [\n                { killer: \"Traffic\", difficulty: \"easy\", question: \"What is the primary danger of relying entirely on manual social media posting?\", choices: [\"It takes too much time\", \"Algorithm shifts can instantly eliminate your traffic overnight\", \"It costs too much money\", \"Free traffic never converts\"], correct: 1 },\n                { killer: \"Systems\", difficulty: \"easy\", question: \"Why do most landing pages fail to convert cold traffic?\", choices: [\"Too many colors\", \"They lack a clear, single-minded value proposition\", \"Standard fonts used\", \"Fast loading speeds\"], correct: 1 },\n                { killer: \"Offer\", difficulty: \"easy\", question: \"What distinguishes a high-value core offer?\", choices: [\"It solves a specific, painful problem with clear ROI\", \"It has 50 hours of video\", \"Priced under $10\", \"Requires daily manual support\"], correct: 0 },\n                { killer: \"Traffic\", difficulty: \"medium\", question: \"Which paid traffic strategy typically provides predictable scalability?\", choices: [\"Random banner ads\", \"Targeted ad platforms with funnel tracking\", \"Spamming directories\", \"Printing flyers\"], correct: 1 },\n                { killer: \"Systems\", difficulty: \"medium\", question: \"What role does social proof play?\", choices: [\"Psychological validation that others succeeded\", \"Slows down rendering\", \"Legally required\", \"Replaces opt-in forms\"], correct: 0 },\n                { killer: \"Offer\", difficulty: \"medium\", question: \"How does a structured order bump affect revenue?\", choices: [\"Confuses buyers\", \"Instantly increases Average Order Value (AOV)\", \"Slows down checkout\", \"Lowers satisfaction\"], correct: 1 },\n                { killer: \"Systems\", difficulty: \"hard\", question: \"What is a major bottleneck caused by lacking SOPs?\", choices: [\"Founder becomes bottleneck for all operations\", \"Server downtime increases\", \"Domain expires\", \"SEO drops\"], correct: 0 },\n                { killer: \"Traffic\", difficulty: \"hard\", question: \"Why is tracking Cost Per Acquisition (CPA) critical?\", choices: [\"To spend more than competitors\", \"To verify lifetime value exceeds acquisition cost\", \"Tax regulations\", \"Increase follower counts\"], correct: 1 },\n                { killer: \"Offer\", difficulty: \"hard\", question: \"What is the ultimate goal of frontend funnel optimization?\", choices: [\"Win design awards\", \"Maximize conversion efficiency into predictable revenue\", \"Increase word count\", \"Eliminate support\"], correct: 1 },\n                { killer: \"Traffic\", difficulty: \"easy\", question: \"What is the best way to secure lead capture against platform changes?\", choices: [\"Own your email list and automated funnels\", \"Post more frequently\", \"Ignore analytics\", \"Use only social media DMs\"], correct: 0 }\n            ];\n            showMenu();\n        });\n});\n\n\/\/ ---------------------------\n\/\/ MENU (WITH WEBINAR BUTTON)\n\/\/ ---------------------------\nfunction showMenu() {\n    const container = document.getElementById(\"business-killer-quiz\");\n    if (!container) return;\n\n    container.innerHTML = `\n        <div class=\"bk-menu\">\n            <h2 class=\"bk-title\">The 3 Business Killers Trivia<\/h2>\n            \n            <button onclick=\"window.open('https:\/\/digitalmarketstore.com\/profit-hub-training\/','_blank')\" class=\"bk-btn bk-btn-special\">\n                \ud83c\udfa5 Watch the Webinar + Free Traffic App ($197 Value)\n            <\/button>\n            \n            <p>Select difficulty:<\/p>\n            <div class=\"bk-diff\">\n                <button onclick=\"setDifficulty('easy')\" class=\"bk-btn ${difficulty === 'easy' ? 'active-diff' : ''}\">Easy<\/button>\n                <button onclick=\"setDifficulty('medium')\" class=\"bk-btn ${difficulty === 'medium' ? 'active-diff' : ''}\">Medium<\/button>\n                <button onclick=\"setDifficulty('hard')\" class=\"bk-btn ${difficulty === 'hard' ? 'active-diff' : ''}\">Hard<\/button>\n            <\/div>\n            \n            <p>Current difficulty: <strong>${difficulty}<\/strong><\/p>\n            \n            <button onclick=\"startGame('normal')\" class=\"bk-btn\">Start Game (10 Questions)<\/button>\n            <button onclick=\"startGame('autoplay')\" class=\"bk-btn bk-btn-alt\">Autoplay Mode (Endless)<\/button>\n        <\/div>\n    `;\n}\n\nfunction setDifficulty(d) {\n    difficulty = d;\n    showMenu();\n}\n\n\/\/ ---------------------------\n\/\/ START GAME\n\/\/ ---------------------------\nfunction startGame(m) {\n    mode = m;\n    score = 0;\n    streak = 0;\n    bestStreak = 0;\n    asked = [];\n    wrong = [];\n    autoplayIndex = 0;\n    bonusUsed = false;\n    categoryStats = { Traffic: 0, Offer: 0, Systems: 0 };\n    categoryCorrect = { Traffic: 0, Offer: 0, Systems: 0 };\n\n    questions = questionsBase.filter(q => q.difficulty === difficulty);\n    if (questions.length < 10) questions = questionsBase; \/\/ Fallback to all if category pool is small\n\n    assignPowerUp();\n\n    if (mode === \"autoplay\") autoplayNext();\n    else nextQuestion();\n}\n\n\/\/ ---------------------------\n\/\/ RANDOM POWER-UP\n\/\/ ---------------------------\nfunction assignPowerUp() {\n    const list = [\"extra_time\", \"skip\", \"double\", \"hint\"];\n    powerUp = list[Math.floor(Math.random() * list.length)];\n}\n\n\/\/ ---------------------------\n\/\/ NORMAL MODE \u2014 10 QUESTIONS\n\/\/ ---------------------------\nfunction nextQuestion() {\n    if (asked.length >= 10) {\n        if (!bonusUsed) return bonusQuestion();\n        return endGame();\n    }\n\n    const available = questions\n      .map((q, i) => i)\n      .filter(i => !asked.includes(i));\n\n    if (available.length === 0) return endGame();\n\n    const index = available[Math.floor(Math.random() * available.length)];\n    asked.push(index);\n\n    const q = questions[index];\n    const killerKey = q.killer || \"Traffic\";\n    if (!categoryStats[killerKey]) categoryStats[killerKey] = 0;\n    categoryStats[killerKey]++;\n\n    renderQuestion(q, asked.length, 10, false);\n    startTimer(20 + (powerUp === \"extra_time\" ? 10 : 0), () => nextQuestion());\n}\n\n\/\/ ---------------------------\n\/\/ AUTOPLAY MODE \u2014 ENDLESS\n\/\/ ---------------------------\nfunction autoplayNext() {\n    if (autoplayIndex >= questions.length) autoplayIndex = 0;\n\n    const q = questions[autoplayIndex++];\n    renderQuestion(q, autoplayIndex, questions.length, true);\n    startTimer(20, () => autoplayNext());\n}\n\n\/\/ ---------------------------\n\/\/ BONUS QUESTION (+3 points)\n\/\/ ---------------------------\nfunction bonusQuestion() {\n    bonusUsed = true;\n\n    const index = Math.floor(Math.random() * questions.length);\n    const q = questions[index];\n    const killerKey = q.killer || \"Traffic\";\n\n    document.getElementById(\"business-killer-quiz\").innerHTML = `\n        <div class=\"bk-wrap\">\n            <h2 class=\"bk-title\">Bonus Question (+3 Points)<\/h2>\n            <p class=\"bk-meta\">Category: ${killerKey}<\/p>\n            <div class=\"bk-progress\"><div class=\"bk-progress-fill\" style=\"width:100%\"><\/div><\/div>\n            <p class=\"bk-q\">${q.question || q.q}<\/p>\n            <ul class=\"bk-choices\">\n                ${q.choices.map((c, i) => `\n                    <li><button class=\"bk-choice\" onclick=\"answerBonus(${index}, ${i})\">${String.fromCharCode(65 + i)}. ${c}<\/button><\/li>\n                `).join(\"\")}\n            <\/ul>\n            <p class=\"bk-timer\">Time left: <span id=\"bk-timer\">20<\/span>s<\/p>\n        <\/div>\n    `;\n\n    startTimer(20, () => endGame());\n}\n\nfunction answerBonus(qIndex, choiceIndex) {\n    clearInterval(timer);\n\n    const q = questions[qIndex];\n    const killerKey = q.killer || \"Traffic\";\n    if (choiceIndex === q.correct) {\n        score += 3;\n        streak++;\n        bestStreak = Math.max(bestStreak, streak);\n        if (!categoryCorrect[killerKey]) categoryCorrect[killerKey] = 0;\n        categoryCorrect[killerKey]++;\n    } else {\n        wrong.push({ question: q.question || q.q, choices: q.choices, correct: q.correct, selected: choiceIndex });\n        streak = 0;\n    }\n\n    endGame();\n}\n\n\/\/ ---------------------------\n\/\/ RENDER QUESTION\n\/\/ ---------------------------\nfunction renderQuestion(q, current, total, autoplay) {\n    const percent = Math.round((current \/ total) * 100);\n    const killerKey = q.killer || \"Traffic\";\n\n    document.getElementById(\"business-killer-quiz\").innerHTML = `\n        <div class=\"bk-wrap\">\n            <h2 class=\"bk-title\">The 3 Business Killers Trivia<\/h2>\n            <p class=\"bk-meta\">${autoplay ? `Autoplay \u2014 Question ${current} of ${total}` : `Question ${current} of ${total} \u2014 ${killerKey}`}<\/p>\n            <div class=\"bk-progress\"><div class=\"bk-progress-fill\" style=\"width:${percent}%\"><\/div><\/div>\n            <p class=\"bk-q\">${q.question || q.q}<\/p>\n            <p class=\"bk-streak\">Streak: ${streak} | Best: ${bestStreak} | Power-Up: ${powerUp || 'None'}<\/p>\n\n            <ul class=\"bk-choices\">\n                ${q.choices.map((c, i) => `\n                    <li>\n                        <button class=\"bk-choice\" ${autoplay ? \"\" : `onclick=\"answerQuestion(${questions.indexOf(q)}, ${i})\"`}>\n                            ${String.fromCharCode(65 + i)}. ${c}\n                        <\/button>\n                    <\/li>\n                `).join(\"\")}\n            <\/ul>\n\n            ${!autoplay ? `\n            <div class=\"bk-hints\">\n                ${powerUp === \"hint\" ? `<button class=\"bk-btn bk-btn-alt\" onclick=\"useHint(${questions.indexOf(q)})\">Use Hint<\/button>` : \"\"}\n                ${powerUp === \"skip\" ? `<button class=\"bk-btn bk-btn-alt\" onclick=\"skipQuestion()\">Skip Question<\/button>` : \"\"}\n            <\/div>\n            ` : \"\"}\n\n            <p class=\"bk-timer\">Time left: <span id=\"bk-timer\">20<\/span>s<\/p>\n\n            <div class=\"bk-actions\">\n                <button class=\"bk-btn bk-btn-alt\" onclick=\"showMenu()\">Exit to Menu<\/button>\n                ${autoplay ? `<button class=\"bk-btn\" onclick=\"startGame('normal')\">Start Game Mode<\/button>` : \"\"}\n            <\/div>\n        <\/div>\n    `;\n}\n\n\/\/ ---------------------------\n\/\/ TIMER\n\/\/ ---------------------------\nfunction startTimer(seconds, callback) {\n    clearInterval(timer);\n    timeLeft = seconds;\n\n    timer = setInterval(() => {\n        timeLeft--;\n        const el = document.getElementById(\"bk-timer\");\n        if (el) el.textContent = timeLeft;\n\n        if (timeLeft <= 0) {\n            clearInterval(timer);\n            callback();\n        }\n    }, 1000);\n}\n\n\/\/ ---------------------------\n\/\/ HINT & SKIP\n\/\/ ---------------------------\nfunction useHint(qIndex) {\n    if (powerUp !== \"hint\") return;\n    powerUp = null;\n\n    const q = questions[qIndex];\n    const wrongChoices = q.choices.map((c, i) => i).filter(i => i !== q.correct);\n    const remove = wrongChoices[Math.floor(Math.random() * wrongChoices.length)];\n\n    const buttons = document.querySelectorAll(\".bk-choice\");\n    if (buttons[remove]) {\n        buttons[remove].disabled = true;\n        buttons[remove].classList.add(\"bk-disabled\");\n    }\n}\n\nfunction skipQuestion() {\n    if (powerUp !== \"skip\") return;\n    powerUp = null;\n    clearInterval(timer);\n    nextQuestion();\n}\n\n\/\/ ---------------------------\n\/\/ ANSWER NORMAL QUESTION\n\/\/ ---------------------------\nfunction answerQuestion(qIndex, choiceIndex) {\n    clearInterval(timer);\n\n    const q = questions[qIndex];\n    const killerKey = q.killer || \"Traffic\";\n    if (!categoryStats[killerKey]) categoryStats[killerKey] = 0;\n    categoryStats[killerKey]++;\n\n    if (choiceIndex === q.correct) {\n        let pts = powerUp === \"double\" ? 2 : 1;\n        score += pts;\n        streak++;\n        bestStreak = Math.max(bestStreak, streak);\n        if (!categoryCorrect[killerKey]) categoryCorrect[killerKey] = 0;\n        categoryCorrect[killerKey]++;\n        if (powerUp === \"double\") powerUp = null;\n    } else {\n        wrong.push({ question: q.question || q.q, choices: q.choices, correct: q.correct, selected: choiceIndex });\n        streak = 0;\n    }\n\n    nextQuestion();\n}\n\n\/\/ ---------------------------\n\/\/ END GAME\n\/\/ ---------------------------\nfunction endGame() {\n    clearInterval(timer);\n\n    const title = getTitle(score);\n    let wrongList = wrong.length\n        ? `<h3>Questions You Got Wrong:<\/h3><ul>${wrong.map(w => `<li><strong>${w.question}<\/strong><br>Your answer: ${w.choices[w.selected]}<br>Correct answer: ${w.choices[w.correct]}<\/li>`).join(\"\")}<\/ul>`\n        : \"<p>You got everything right!<\/p>\";\n\n    const shareText = encodeURIComponent(`I scored ${score} points in the Business Killers Trivia! My title: ${title}. Try it yourself!`);\n\n    document.getElementById(\"business-killer-quiz\").innerHTML = `\n        <div class=\"bk-wrap\">\n            <h2 class=\"bk-title\">Your Score: ${score}<\/h2>\n            <h3 class=\"bk-title\">${title}<\/h3>\n            <p>Best Streak: ${bestStreak}<\/p>\n            ${wrongList}\n\n            <h3 class=\"bk-title\">Share Your Score<\/h3>\n            <div class=\"share-buttons\">\n                <button class=\"bk-btn\" onclick=\"navigator.clipboard.writeText('I scored ${score} in the Business Killers Trivia!')\">Copy Score<\/button>\n                <button class=\"bk-btn\" onclick=\"window.open('https:\/\/www.facebook.com\/sharer\/sharer.php?u=https:\/\/digitalmarketstore.com','_blank')\">Facebook<\/button>\n                <button class=\"bk-btn\" onclick=\"window.open('https:\/\/twitter.com\/intent\/tweet?text=${shareText}','_blank')\">X (Twitter)<\/button>\n                <button class=\"bk-btn\" onclick=\"window.open('https:\/\/www.threads.net\/share?text=${shareText}','_blank')\">Threads<\/button>\n            <\/div>\n\n            <button onclick=\"startGame('normal')\" class=\"bk-btn\">Try Again<\/button>\n            <button onclick=\"showMenu()\" class=\"bk-btn bk-btn-alt\">Main Menu<\/button>\n            \n            <button onclick=\"openPopup()\" class=\"bk-btn bk-btn-special\">\n                \ud83d\ude80 Claim Your Free Traffic App ($197 Value)\n            <\/button>\n        <\/div>\n\n        <div id=\"popup\" class=\"popup\">\n            <div class=\"popup-content\">\n                <h2>\ud83d\ude80 Claim Your Free Traffic App ($197 Value)<\/h2>\n                <p>Unlock the exact tool that helps you fix the 3 Business Killers and explode your traffic.<\/p>\n                <button class=\"bk-btn\" onclick=\"window.open('https:\/\/digitalmarketstore.com\/profit-hub-training\/','_blank')\">Get the Free App<\/button>\n                <button class=\"bk-btn bk-btn-alt\" onclick=\"closePopup()\">Close<\/button>\n            <\/div>\n        <\/div>\n    `;\n}\n\nfunction openPopup() {\n    document.getElementById(\"popup\").style.display = \"flex\";\n}\nfunction closePopup() {\n    document.getElementById(\"popup\").style.display = \"none\";\n}\n\nfunction getTitle(s) {\n    if (s <= 3) return \"Business Killer Victim\";\n    if (s <= 6) return \"Survival Marketer\";\n    if (s <= 8) return \"Growth Strategist\";\n    return \"Business Killer Slayer\";\n}\n<\/script>\n\n<style>\n#business-killer-quiz {\n    max-width: 800px;\n    margin: auto;\n    padding: 20px;\n    background: #0b0b12;\n    color: #fff;\n    border-radius: 12px;\n    box-shadow: 0 0 30px rgba(0, 255, 200, 0.25);\n    font-family: system-ui;\n}\n.bk-title {\n    font-size: 1.8rem;\n    text-align: center;\n    color: #00ffd5;\n}\n.bk-btn {\n    padding: 10px 16px;\n    background: #00ffd5;\n    color: #000;\n    border: none;\n    border-radius: 8px;\n    cursor: pointer;\n    font-weight: 600;\n    margin: 5px;\n}\n.bk-btn-alt {\n    background: #1f2335;\n    color: #fff;\n}\n.active-diff {\n    border: 2px solid #fff;\n}\n.bk-btn-special {\n    background: linear-gradient(90deg, #ff00c8, #ff6b00);\n    color: #fff;\n    font-weight: 700;\n    padding: 12px 18px;\n    border-radius: 10px;\n    margin-top: 15px;\n    box-shadow: 0 0 15px rgba(255, 0, 200, 0.4);\n    cursor: pointer;\n}\n.bk-btn-special:hover {\n    opacity: 0.85;\n    transform: scale(1.02);\n}\n.bk-wrap, .bk-menu {\n    text-align: center;\n}\n.bk-diff {\n    display: flex;\n    justify-content: center;\n    gap: 10px;\n    margin-bottom: 10px;\n}\n.bk-meta {\n    color: #9fa4b8;\n    margin-bottom: 10px;\n}\n.bk-progress {\n    width: 100%;\n    height: 8px;\n    background: #1f2335;\n    border-radius: 4px;\n    margin-bottom: 10px;\n}\n.bk-progress-fill {\n    height: 100%;\n    background: linear-gradient(90deg, #00ffd5, #00aaff);\n}\n.bk-q {\n    font-size: 1.2rem;\n    margin-bottom: 15px;\n}\n.bk-streak {\n    font-size: 0.9rem;\n    color: #9fa4b8;\n    margin-bottom: 10px;\n}\n.bk-choices {\n    list-style: none;\n    padding: 0;\n}\n.bk-choice {\n    width: 100%;\n    padding: 10px;\n    margin-bottom: 8px;\n    background: #141726;\n    border: 1px solid #1f2335;\n    color: #fff;\n    border-radius: 8px;\n    cursor: pointer;\n}\n.bk-choice:hover {\n    background: #101320;\n    border-color: #00ffd5;\n}\n.bk-disabled {\n    opacity: 0.4;\n    cursor: not-allowed;\n}\n.bk-timer {\n    margin-top: 10px;\n    color: #ffb347;\n}\n.bk-actions {\n    margin-top: 15px;\n}\n.share-buttons {\n    margin: 15px 0;\n}\n.popup {\n    display: none;\n    position: fixed;\n    top: 0;\n    left: 0;\n    width: 100%;\n    height: 100%;\n    background: rgba(0, 0, 0, 0.8);\n    justify-content: center;\n    align-items: center;\n    z-index: 9999;\n}\n.popup-content {\n    background: #141726;\n    padding: 25px;\n    border-radius: 12px;\n    text-align: center;\n    max-width: 400px;\n}\n<\/style><\/div><\/div>\n<\/div>\n<\/div>\n\n<div class=\"et_pb_row_1 et_pb_row et-vb-row--no-module et_flex_row\">\n<div class=\"et_pb_column_1 et_pb_column et-last-child et_flex_column et_pb_column_empty et_pb_css_mix_blend_mode_passthrough et_flex_column_24_24 et_flex_column_24_24_tablet et_flex_column_24_24_phone\"><\/div>\n<\/div>\n<\/div>","protected":false},"excerpt":{"rendered":"","protected":false},"author":2,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"order-bump-settings":[],"_wpfnl_thankyou_order_overview":"on","_wpfnl_thankyou_order_details":"on","_wpfnl_thankyou_billing_details":"on","_wpfnl_thankyou_shipping_details":"on","footnotes":""},"class_list":["post-308543","page","type-page","status-publish","hentry"],"_links":{"self":[{"href":"https:\/\/digitalmarketstore.com\/v\/wp\/v2\/pages\/308543","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/digitalmarketstore.com\/v\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/digitalmarketstore.com\/v\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/digitalmarketstore.com\/v\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/digitalmarketstore.com\/v\/wp\/v2\/comments?post=308543"}],"version-history":[{"count":70,"href":"https:\/\/digitalmarketstore.com\/v\/wp\/v2\/pages\/308543\/revisions"}],"predecessor-version":[{"id":308617,"href":"https:\/\/digitalmarketstore.com\/v\/wp\/v2\/pages\/308543\/revisions\/308617"}],"wp:attachment":[{"href":"https:\/\/digitalmarketstore.com\/v\/wp\/v2\/media?parent=308543"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}