




{"id":77,"date":"2025-10-29T12:12:02","date_gmt":"2025-10-29T12:12:02","guid":{"rendered":"https:\/\/aqgamingworld.linkpc.net\/?page_id=77"},"modified":"2025-10-29T13:26:46","modified_gmt":"2025-10-29T13:26:46","slug":"name-draw-wheel","status":"publish","type":"page","link":"https:\/\/aqgamingworld.linkpc.net\/?page_id=77","title":{"rendered":"Lucky Name Draw Wheel"},"content":{"rendered":"<p>Welcome to the Name Draw Wheel, an exciting and fair random name picker!<br \/>\nThis interactive tool lets you easily add names, spin a colorful wheel, and instantly find a winner.<br \/>\nPerfect for giveaways, classroom activities, team events, or any moment that deserves a little fun and suspense.<br \/>\n    <div id=\"ndw_20f1778d\" class=\"ndw-root\">\n        <h3 class=\"ndw-title\">Name Draw Wheel<\/h3>\n\n        <div class=\"ndw-controls\">\n            <input class=\"ndw-input\" type=\"text\" placeholder=\"Enter a name and press Add\" aria-label=\"Name input\">\n            <button class=\"ndw-btn ndw-add\">Add<\/button>\n            <button class=\"ndw-btn ndw-clear\">Clear<\/button>\n        <\/div>\n\n        <div class=\"ndw-main\">\n            <div class=\"ndw-wheel-wrap\">\n                <div class=\"ndw-pointer\">\u25b2<\/div>\n                <svg class=\"ndw-wheel\" viewBox=\"0 0 300 300\" width=\"300\" height=\"300\"><\/svg>\n            <\/div>\n\n            <div class=\"ndw-list-wrap\">\n                <h4>Queue<\/h4>\n                <ul class=\"ndw-list\" role=\"list\"><\/ul>\n                <div class=\"ndw-actions\">\n                    <button class=\"ndw-btn ndw-draw\">Draw<\/button>\n                <\/div>\n            <\/div>\n        <\/div>\n\n        <div class=\"ndw-result\" aria-live=\"polite\"><\/div>\n\n        <style>\n        \/* Basic styles - you can override these in your theme or child theme *\/\n        .ndw-root{font-family:system-ui,Segoe UI,Roboto,\"Helvetica Neue\",Arial;max-width:900px;margin:18px auto;padding:12px;border:1px solid #e3e3e3;border-radius:8px;background:#fff}\n        .ndw-title{margin:4px 0 12px;font-size:18px}\n        .ndw-controls{display:flex;gap:8px;align-items:center;margin-bottom:12px}\n        .ndw-input{flex:1;padding:8px;border:1px solid #ccc;border-radius:6px}\n        .ndw-btn{padding:8px 12px;border-radius:6px;border:1px solid #2d6cdf;background:#2d6cdf;color:white;cursor:pointer}\n        .ndw-btn:disabled{opacity:0.5;cursor:default}\n        .ndw-main{display:flex;gap:20px;align-items:flex-start}\n        .ndw-wheel-wrap{position:relative;width:300px;height:300px}\n        .ndw-wheel{transform-origin:center center;transition:transform 5s cubic-bezier(.2,.95,.1,1)}\n        .ndw-pointer{position:absolute;left:50%;top:-14px;transform:translateX(-50%);font-size:18px;color:#ff3b30}\n        .ndw-list-wrap{flex:1}\n        .ndw-list{list-style:none;padding:0;margin:0;max-height:300px;overflow:auto;border:1px dashed #ddd;border-radius:6px;padding:8px}\n        .ndw-list li{padding:6px 8px;border-radius:4px;margin-bottom:6px;background:#f7f7f7;display:flex;justify-content:space-between;align-items:center}\n        .ndw-list li .remove{background:transparent;border:0;color:#c0392b;cursor:pointer}\n        .ndw-actions{margin-top:10px}\n        .ndw-result{margin-top:12px;font-weight:600;font-size:16px}\n        \/* sector colors fallback *\/\n        <\/style>\n\n        <script>\n        (function(){\n            const root = document.getElementById('ndw_20f1778d');\n            const input = root.querySelector('.ndw-input');\n            const addBtn = root.querySelector('.ndw-add');\n            const clearBtn = root.querySelector('.ndw-clear');\n            const listEl = root.querySelector('.ndw-list');\n            const drawBtn = root.querySelector('.ndw-draw');\n            const svg = root.querySelector('.ndw-wheel');\n            const resultEl = root.querySelector('.ndw-result');\n            const size = 300;\n\n            let names = [];\n            let currentRotation = 0; \/\/ degrees\n\n            function randColor(i){\n                \/\/ deterministic-ish palette\n                const hues = [12,28,45,75,140,200,230,270,310,350];\n                const h = hues[i % hues.length];\n                return `hsl(${h} 70% 65%)`;\n            }\n\n            function polarToCartesian(cx, cy, r, angleDeg){\n                const a = (angleDeg-90) * Math.PI\/180.0;\n                return {x: cx + (r * Math.cos(a)), y: cy + (r * Math.sin(a))};\n            }\n\n            function describeArc(cx, cy, r, startAngle, endAngle){\n                const start = polarToCartesian(cx, cy, r, endAngle);\n                const end = polarToCartesian(cx, cy, r, startAngle);\n                const largeArcFlag = endAngle - startAngle <= 180 ? '0' : '1';\n                return `M ${cx} ${cy} L ${start.x} ${start.y} A ${r} ${r} 0 ${largeArcFlag} 0 ${end.x} ${end.y} Z`;\n            }\n\n            function renderWheel(){\n                \/\/ Draw pie sectors\n                while(svg.firstChild) svg.removeChild(svg.firstChild);\n                const n = names.length;\n                if(n === 0){\n                    \/\/ show empty circle\n                    const circ = document.createElementNS('http:\/\/www.w3.org\/2000\/svg','circle');\n                    circ.setAttribute('cx', size\/2); circ.setAttribute('cy', size\/2); circ.setAttribute('r', size\/2 - 6);\n                    circ.setAttribute('fill','#fafafa'); circ.setAttribute('stroke','#ddd'); circ.setAttribute('stroke-width','2');\n                    svg.appendChild(circ);\n                    return;\n                }\n                const cx = size\/2; const cy = size\/2; const r = size\/2 - 6;\n                const angle = 360 \/ n;\n                for(let i=0;i<n;i++){\n                    const start = i * angle;\n                    const end = start + angle;\n                    const path = document.createElementNS('http:\/\/www.w3.org\/2000\/svg','path');\n                    path.setAttribute('d', describeArc(cx,cy,r,start,end));\n                    path.setAttribute('fill', randColor(i));\n                    path.setAttribute('stroke','#ffffff');\n                    path.setAttribute('stroke-width','1');\n                    svg.appendChild(path);\n\n                    \/\/ label as small text in middle\n                    const mid = start + angle\/2;\n                    const pos = polarToCartesian(cx,cy, r*0.6, mid);\n                    const text = document.createElementNS('http:\/\/www.w3.org\/2000\/svg','text');\n                    text.setAttribute('x', pos.x); text.setAttribute('y', pos.y);\n                    text.setAttribute('text-anchor','middle');\n                    text.setAttribute('dominant-baseline','middle');\n                    text.setAttribute('font-size', Math.max(10, Math.floor(r\/8)));\n                    text.setAttribute('fill','#222');\n                    \/\/ truncate\n                    const label = names[i].length > 18 ? names[i].slice(0,16) + '\u2026' : names[i];\n                    text.textContent = label;\n                    svg.appendChild(text);\n                }\n            }\n\n            function rebuildList(){\n                listEl.innerHTML = '';\n                names.forEach((nm, idx) => {\n                    const li = document.createElement('li');\n                    const span = document.createElement('span'); span.textContent = nm;\n                    const rm = document.createElement('button'); rm.className = 'remove'; rm.textContent = '\u2715'; rm.title = 'Remove';\n                    rm.addEventListener('click', ()=>{ names.splice(idx,1); renderWheel(); rebuildList(); });\n                    li.appendChild(span); li.appendChild(rm);\n                    listEl.appendChild(li);\n                });\n            }\n\n            addBtn.addEventListener('click', ()=>{\n                const v = input.value.trim();\n                if(!v) return;\n                names.push(v);\n                input.value = '';\n                renderWheel(); rebuildList();\n                resultEl.textContent = '';\n            });\n\n            clearBtn.addEventListener('click', ()=>{\n                names = []; renderWheel(); rebuildList(); resultEl.textContent = '';\n            });\n\n            input.addEventListener('keyup', (e)=>{ if(e.key === 'Enter') addBtn.click(); });\n\n            drawBtn.addEventListener('click', ()=>{\n                if(names.length === 0) return alert('Add at least one name');\n                drawBtn.disabled = true; addBtn.disabled = true; clearBtn.disabled = true;\n                \/\/ pick random index\n                const chosen = Math.floor(Math.random()*names.length);\n                \/\/ compute rotation so that chosen sector's middle lands at pointer (top)\n                const sectorAngle = 360 \/ names.length;\n                \/\/ sector middle angle in wheel coordinate (0 at top, clockwise) => our SVG sectors start at 0 deg pointing to top-90 in describeArc; we used start angles starting at 0 which corresponds to top. So formula:\n                const sectorMiddle = chosen * sectorAngle + sectorAngle\/2;\n                \/\/ We want to rotate wheel so that sectorMiddle lands at 0deg (top). Current rotation is degrees applied to svg transform.\n                \/\/ targetRotation degrees (applied to wheel) = 360 - sectorMiddle (so that middle moves to top) plus extra spins\n                const extra = 360 * (3 + Math.floor(Math.random()*3)); \/\/ 3-5 extra spins\n                const targetRotation = extra + (360 - sectorMiddle);\n                \/\/ animate by setting transform; CSS transition handles easing\n                svg.style.transition = 'transform 4s cubic-bezier(.18,.9,.25,1)';\n                \/\/ make rotation accumulate from currentRotation\n                currentRotation = (currentRotation + targetRotation) % 360000;\n                svg.style.transform = `rotate(${currentRotation}deg)`;\n\n                \/\/ after transition ends\n                const onEnd = function(){\n                    svg.style.transition = ''; \/\/ remove transition to allow instant updates later\n                    \/\/ compute final normalized rotation\n                    const normalized = ((currentRotation % 360) + 360) % 360;\n                    \/\/ determine landed index to confirm\n                    const landed = Math.floor(((360 - normalized) % 360) \/ sectorAngle);\n                    const winnerIndex = ((landed % names.length) + names.length) % names.length;\n                    const winner = names[winnerIndex];\n                    resultEl.textContent = 'Winner: ' + winner;\n                    drawBtn.disabled = false; addBtn.disabled = false; clearBtn.disabled = false;\n                    svg.removeEventListener('transitionend', onEnd);\n                };\n                svg.addEventListener('transitionend', onEnd);\n            });\n\n            \/\/ initial render\n            renderWheel(); rebuildList();\n\n            \/\/ make component accessible via global for debugging\n            root.ndw = {names, renderWheel, rebuildList};\n        })();\n        <\/script>\n    <\/div>\n    <\/p>\n<p>&nbsp;<\/p>\n<h3 data-start=\"647\" data-end=\"670\">\ud83e\ude84 <strong data-start=\"654\" data-end=\"670\">How It Works<\/strong><\/h3>\n<ol data-start=\"672\" data-end=\"1508\">\n<li data-start=\"672\" data-end=\"883\">\n<p data-start=\"675\" data-end=\"692\"><strong data-start=\"675\" data-end=\"690\">Enter Names<\/strong><\/p>\n<ul data-start=\"696\" data-end=\"883\">\n<li data-start=\"696\" data-end=\"751\">\n<p data-start=\"698\" data-end=\"751\">Type the names of all participants in the text box.<\/p>\n<\/li>\n<li data-start=\"755\" data-end=\"825\">\n<p data-start=\"757\" data-end=\"825\">After typing each name, click the <strong data-start=\"791\" data-end=\"798\">Add<\/strong> button (or press Enter).<\/p>\n<\/li>\n<li data-start=\"829\" data-end=\"883\">\n<p data-start=\"831\" data-end=\"883\">Each added name appears in the list below the wheel.<\/p>\n<\/li>\n<\/ul>\n<\/li>\n<li data-start=\"885\" data-end=\"1069\">\n<p data-start=\"888\" data-end=\"909\"><strong data-start=\"888\" data-end=\"907\">Review the List<\/strong><\/p>\n<ul data-start=\"913\" data-end=\"1069\">\n<li data-start=\"913\" data-end=\"961\">\n<p data-start=\"915\" data-end=\"961\">You can see all the names in the queue list.<\/p>\n<\/li>\n<li data-start=\"965\" data-end=\"1020\">\n<p data-start=\"967\" data-end=\"1020\">To remove a name, click the small <strong data-start=\"1001\" data-end=\"1006\">\u2715<\/strong> next to it.<\/p>\n<\/li>\n<li data-start=\"1024\" data-end=\"1069\">\n<p data-start=\"1026\" data-end=\"1069\">To start fresh, click the <strong data-start=\"1052\" data-end=\"1061\">Clear<\/strong> button.<\/p>\n<\/li>\n<\/ul>\n<\/li>\n<li data-start=\"1071\" data-end=\"1336\">\n<p data-start=\"1074\" data-end=\"1094\"><strong data-start=\"1074\" data-end=\"1092\">Spin the Wheel<\/strong><\/p>\n<ul data-start=\"1098\" data-end=\"1336\">\n<li data-start=\"1098\" data-end=\"1154\">\n<p data-start=\"1100\" data-end=\"1154\">When all names are added, click the <strong data-start=\"1136\" data-end=\"1144\">Draw<\/strong> button.<\/p>\n<\/li>\n<li data-start=\"1158\" data-end=\"1251\">\n<p data-start=\"1160\" data-end=\"1251\">The wheel will begin to <strong data-start=\"1184\" data-end=\"1202\">spin clockwise<\/strong>, speeding up before slowing down dramatically.<\/p>\n<\/li>\n<li data-start=\"1255\" data-end=\"1336\">\n<p data-start=\"1257\" data-end=\"1336\">Watch closely \u2014 when the wheel stops, the pointer will land on one random name.<\/p>\n<\/li>\n<\/ul>\n<\/li>\n<li data-start=\"1338\" data-end=\"1508\">\n<p data-start=\"1341\" data-end=\"1361\"><strong data-start=\"1341\" data-end=\"1359\">See the Winner<\/strong><\/p>\n<ul data-start=\"1365\" data-end=\"1508\">\n<li data-start=\"1365\" data-end=\"1430\">\n<p data-start=\"1367\" data-end=\"1430\">The winning name appears below the wheel after the spin ends.<\/p>\n<\/li>\n<li data-start=\"1434\" data-end=\"1508\">\n<p data-start=\"1436\" data-end=\"1508\">You can spin again anytime by adding new names or reusing the same list.<\/p>\n<\/li>\n<\/ul>\n<\/li>\n<\/ol>\n<hr data-start=\"1510\" data-end=\"1513\" \/>\n<h3 data-start=\"1515\" data-end=\"1547\">\ud83c\udfaf <strong data-start=\"1522\" data-end=\"1547\">What Makes It Special<\/strong><\/h3>\n<ul data-start=\"1549\" data-end=\"1929\">\n<li data-start=\"1549\" data-end=\"1628\">\n<p data-start=\"1551\" data-end=\"1628\"><strong data-start=\"1551\" data-end=\"1576\">Fair Random Selection<\/strong> \u2013 Every name has an equal chance of being chosen.<\/p>\n<\/li>\n<li data-start=\"1629\" data-end=\"1714\">\n<p data-start=\"1631\" data-end=\"1714\"><strong data-start=\"1631\" data-end=\"1656\">Fun Visual Experience<\/strong> \u2013 The spinning animation makes draws exciting to watch.<\/p>\n<\/li>\n<li data-start=\"1715\" data-end=\"1777\">\n<p data-start=\"1717\" data-end=\"1777\"><strong data-start=\"1717\" data-end=\"1734\">Easy Controls<\/strong> \u2013 Simple buttons to add, clear, or spin.<\/p>\n<\/li>\n<li data-start=\"1778\" data-end=\"1855\">\n<p data-start=\"1780\" data-end=\"1855\"><strong data-start=\"1780\" data-end=\"1799\">Instant Results<\/strong> \u2013 Winner\u2019s name displayed immediately after the spin.<\/p>\n<\/li>\n<li data-start=\"1856\" data-end=\"1929\">\n<p data-start=\"1858\" data-end=\"1929\"><strong data-start=\"1858\" data-end=\"1877\">Mobile Friendly<\/strong> \u2013 Works smoothly on phones, tablets, and computers.<\/p>\n<\/li>\n<\/ul>\n<hr data-start=\"1931\" data-end=\"1934\" \/>\n<h3 data-start=\"1936\" data-end=\"1971\">\ud83d\udca1 <strong data-start=\"1943\" data-end=\"1971\">Tips for Best Experience<\/strong><\/h3>\n<ul data-start=\"1972\" data-end=\"2201\">\n<li data-start=\"1972\" data-end=\"2033\">\n<p data-start=\"1974\" data-end=\"2033\">Use short, clear names to keep the wheel labels readable.<\/p>\n<\/li>\n<li data-start=\"2034\" data-end=\"2092\">\n<p data-start=\"2036\" data-end=\"2092\">Try adding emojis (\ud83c\udf81, \ud83c\udf1f, \ud83e\uddd1\u200d\ud83c\udf93) to make it more fun!<\/p>\n<\/li>\n<li data-start=\"2093\" data-end=\"2147\">\n<p data-start=\"2095\" data-end=\"2147\">Run multiple draws for different prizes or rounds.<\/p>\n<\/li>\n<li data-start=\"2148\" data-end=\"2201\">\n<p data-start=\"2150\" data-end=\"2201\">You can clear the list anytime to start a new game.<\/p>\n<\/li>\n<\/ul>\n<hr data-start=\"2203\" data-end=\"2206\" \/>\n<h3 data-start=\"2208\" data-end=\"2230\">\ud83e\udd73 <strong data-start=\"2215\" data-end=\"2230\">Perfect For<\/strong><\/h3>\n<ul data-start=\"2231\" data-end=\"2410\">\n<li data-start=\"2231\" data-end=\"2266\">\n<p data-start=\"2233\" data-end=\"2266\">Online giveaways or prize draws<\/p>\n<\/li>\n<li data-start=\"2267\" data-end=\"2309\">\n<p data-start=\"2269\" data-end=\"2309\">Classroom games and student selections<\/p>\n<\/li>\n<li data-start=\"2310\" data-end=\"2357\">\n<p data-start=\"2312\" data-end=\"2357\">Team-building events or lucky spins at work<\/p>\n<\/li>\n<li data-start=\"2358\" data-end=\"2410\">\n<p data-start=\"2360\" data-end=\"2410\">Party games, quiz nights, or live stream raffles<\/p>\n<\/li>\n<\/ul>\n<hr data-start=\"2412\" data-end=\"2415\" \/>\n<h3 data-start=\"2417\" data-end=\"2440\">\u2728 <strong data-start=\"2423\" data-end=\"2440\">Quick Summary<\/strong><\/h3>\n<ul data-start=\"2441\" data-end=\"2572\">\n<li data-start=\"2441\" data-end=\"2504\">\n<p data-start=\"2443\" data-end=\"2504\">Type names \u2192 Add \u2192 Spin the wheel \u2192 Winner chosen randomly!<\/p>\n<\/li>\n<li data-start=\"2505\" data-end=\"2572\">\n<p data-start=\"2507\" data-end=\"2572\">Fast, fair, and full of excitement \u2014 just like a real lucky draw!<\/p>\n<\/li>\n<\/ul>\n<p>&nbsp;<\/p>\n<p>&nbsp;<\/p>\n<p>&nbsp;<\/p>\n<p>&nbsp;<\/p>\n<p>&nbsp;<\/p>\n<ul>\n<li data-start=\"1129\" data-end=\"1151\">\n<p data-start=\"1131\" data-end=\"1151\">random name picker<\/p>\n<\/li>\n<li data-start=\"1152\" data-end=\"1171\">\n<p data-start=\"1154\" data-end=\"1171\">name draw wheel<\/p>\n<\/li>\n<li data-start=\"1172\" data-end=\"1194\">\n<p data-start=\"1174\" data-end=\"1194\">lucky draw spinner<\/p>\n<\/li>\n<li data-start=\"1195\" data-end=\"1218\">\n<p data-start=\"1197\" data-end=\"1218\">spin the wheel game<\/p>\n<\/li>\n<li data-start=\"1219\" data-end=\"1243\">\n<p data-start=\"1221\" data-end=\"1243\">random name selector<\/p>\n<\/li>\n<li data-start=\"1244\" data-end=\"1264\">\n<p data-start=\"1246\" data-end=\"1264\">online name draw<\/p>\n<\/li>\n<li data-start=\"1265\" data-end=\"1291\">\n<p data-start=\"1267\" data-end=\"1291\">giveaway winner picker<\/p>\n<\/li>\n<li data-start=\"1292\" data-end=\"1316\">\n<p data-start=\"1294\" data-end=\"1316\">classroom randomizer<\/p>\n<\/li>\n<li data-start=\"1317\" data-end=\"1336\">\n<p data-start=\"1319\" data-end=\"1336\">lucky draw tool<\/p>\n<\/li>\n<li data-start=\"1337\" data-end=\"1359\">\n<p data-start=\"1339\" data-end=\"1359\">spin and win wheel<\/p>\n<\/li>\n<li data-start=\"1507\" data-end=\"1532\">\n<p data-start=\"1509\" data-end=\"1532\">online raffle spinner<\/p>\n<\/li>\n<li data-start=\"1533\" data-end=\"1565\">\n<p data-start=\"1535\" data-end=\"1565\">interactive random name tool<\/p>\n<\/li>\n<li data-start=\"1566\" data-end=\"1593\">\n<p data-start=\"1568\" data-end=\"1593\">fair name picker online<\/p>\n<\/li>\n<li data-start=\"1594\" data-end=\"1627\">\n<p data-start=\"1596\" data-end=\"1627\">spinning wheel name generator<\/p>\n<\/li>\n<li data-start=\"1628\" data-end=\"1649\">\n<p data-start=\"1630\" data-end=\"1649\">fun giveaway tool<\/p>\n<\/li>\n<li data-start=\"1650\" data-end=\"1673\">\n<p data-start=\"1652\" data-end=\"1673\">prize draw selector<\/p>\n<\/li>\n<li data-start=\"1674\" data-end=\"1704\">\n<p data-start=\"1676\" data-end=\"1704\">random name generator game<\/p>\n<\/li>\n<li data-start=\"1705\" data-end=\"1733\">\n<p data-start=\"1707\" data-end=\"1733\">classroom student picker<\/p>\n<\/li>\n<li data-start=\"1734\" data-end=\"1759\">\n<p data-start=\"1736\" data-end=\"1759\">office team name draw<\/p>\n<\/li>\n<li data-start=\"1760\" data-end=\"1781\">\n<p data-start=\"1762\" data-end=\"1781\">visual randomizer<\/p>\n<\/li>\n<\/ul>\n<p><head><br \/>\n<!-- Open Graph Meta Tags --><br \/>\n<meta property=\"og:title\" content=\"Name Draw Wheel \u2013 Random Name Picker &#038; Lucky Draw Spinner Online\"><br \/>\n<meta property=\"og:description\" content=\"Spin the Name Draw Wheel to randomly pick a winner! Add names, spin the colorful wheel, and get instant fair results. Perfect for giveaways and fun events.\"><br \/>\n<meta property=\"og:image\" content=\"https:\/\/yourwebsite.com\/path-to-wheel-image.jpg\"><br \/>\n<meta property=\"og:type\" content=\"website\"><br \/>\n<meta property=\"og:url\" content=\"https:\/\/yourwebsite.com\/name-draw-wheel\"><\/p>\n<p><!-- Twitter Card --><br \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\"><br \/>\n<meta name=\"twitter:title\" content=\"Name Draw Wheel \u2013 Random Name Picker &#038; Lucky Draw Spinner\"><br \/>\n<meta name=\"twitter:description\" content=\"Run fun and fair random draws online. Add names, spin the wheel, and find your winner instantly!\"><br \/>\n<meta name=\"twitter:image\" content=\"https:\/\/yourwebsite.com\/path-to-wheel-image.jpg\"><\/p>\n<p><\/head><br \/>\n#LuckyDraw #NamePicker #GiveawayTool #SpinTheWheel #RandomSelector<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Welcome to the Name Draw Wheel, an exciting and fair random name picker! This interactive tool lets you easily add names, spin a colorful wheel, and instantly find a winner. Perfect for giveaways, classroom activities, team events, or any moment that deserves a little fun and suspense. &nbsp; \ud83e\ude84 How It Works Enter Names Type [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"footnotes":""},"class_list":["post-77","page","type-page","status-publish","hentry"],"_links":{"self":[{"href":"https:\/\/aqgamingworld.linkpc.net\/index.php?rest_route=\/wp\/v2\/pages\/77","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/aqgamingworld.linkpc.net\/index.php?rest_route=\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/aqgamingworld.linkpc.net\/index.php?rest_route=\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/aqgamingworld.linkpc.net\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/aqgamingworld.linkpc.net\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=77"}],"version-history":[{"count":8,"href":"https:\/\/aqgamingworld.linkpc.net\/index.php?rest_route=\/wp\/v2\/pages\/77\/revisions"}],"predecessor-version":[{"id":94,"href":"https:\/\/aqgamingworld.linkpc.net\/index.php?rest_route=\/wp\/v2\/pages\/77\/revisions\/94"}],"wp:attachment":[{"href":"https:\/\/aqgamingworld.linkpc.net\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=77"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}