{"id":1020,"date":"2026-06-28T12:53:50","date_gmt":"2026-06-28T09:53:50","guid":{"rendered":"https:\/\/studio-liat.co.il\/danino\/?page_id=1020"},"modified":"2026-06-28T13:27:19","modified_gmt":"2026-06-28T10:27:19","slug":"coloring-online","status":"publish","type":"page","link":"https:\/\/studio-liat.co.il\/danino\/coloring-online\/","title":{"rendered":"\u05d3\u05e4\u05d9 \u05e6\u05d1\u05d9\u05e2\u05d4"},"content":{"rendered":"\t\t<div data-elementor-type=\"wp-page\" data-elementor-id=\"1020\" class=\"elementor elementor-1020\" data-elementor-post-type=\"page\">\n\t\t\t\t<div class=\"elementor-element elementor-element-b84681d e-flex e-con-boxed e-con e-parent\" data-id=\"b84681d\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-70dbe3c elementor-widget elementor-widget-html\" data-id=\"70dbe3c\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"html.default\">\n\t\t\t\t\t<div class=\"co-app\">\r\n  <div class=\"co-tools\">\r\n    <input type=\"color\" id=\"coColor\" value=\"#ff0000\">\r\n    <input type=\"range\" id=\"coSize\" min=\"2\" max=\"60\" value=\"14\">\r\n\r\n    <button id=\"coFill\">\u05de\u05d9\u05dc\u05d5\u05d9<\/button>\r\n    <button id=\"coBrush\">\u05de\u05d1\u05e8\u05e9\u05ea<\/button>\r\n    <button id=\"coEraser\">\u05de\u05d7\u05e7<\/button>\r\n    <button id=\"coUndo\">\u21a9 \u05d7\u05d6\u05d5\u05e8<\/button>\r\n    <button id=\"coRedo\">\u21aa \u05e7\u05d3\u05d9\u05de\u05d4<\/button>\r\n    <button id=\"coClear\">\u05e0\u05e7\u05d4<\/button>\r\n    <button id=\"coDownload\">\u05d4\u05d5\u05e8\u05d3<\/button>\r\n  <\/div>\r\n\r\n  <canvas id=\"coCanvas\"><\/canvas>\r\n  \r\n   <div id=\"coCursor\">\ud83e\udea3<\/div>\r\n   \r\n<\/div>\r\n\r\n<style>\r\n.co-app{max-width:1000px;margin:25px auto;text-align:center;direction:rtl}\r\n.co-tools{display:flex;gap:10px;justify-content:center;align-items:center;flex-wrap:wrap;margin-bottom:15px}\r\n.co-tools button{border:0;border-radius:10px;padding:10px 16px;font-weight:700;cursor:pointer;background:#ffd43b}\r\n.co-tools button.active{background:#ff5c8a;color:#fff}\r\n#coCanvas{width:100%;max-width:900px;background:#fff;border:2px solid #ddd;border-radius:14px;touch-action:none}\r\n<\/style>\r\n\r\n<script>\r\n(function(){\r\n  const canvas=document.getElementById(\"coCanvas\");\r\n  const ctx=canvas.getContext(\"2d\",{willReadFrequently:true});\r\n\r\n  const color=document.getElementById(\"coColor\");\r\n  const size=document.getElementById(\"coSize\");\r\n  const fillBtn=document.getElementById(\"coFill\");\r\n  const brushBtn=document.getElementById(\"coBrush\");\r\n  const eraserBtn=document.getElementById(\"coEraser\");\r\n  const undoBtn=document.getElementById(\"coUndo\");\r\n  const redoBtn=document.getElementById(\"coRedo\");\r\n  const clearBtn=document.getElementById(\"coClear\");\r\n  const downloadBtn=document.getElementById(\"coDownload\");\r\n\r\n  let mode=\"fill\", drawing=false, undo=[], redo=[], baseImg=null;\r\n\r\n  const params=new URLSearchParams(window.location.search);\r\n  const imgUrl=params.get(\"img\") || \"https:\/\/studio-liat.co.il\/danino\/wp-content\/uploads\/2026\/06\/color1-rotated-e1782641478607.jpg\";\r\n\r\n  function setActive(){\r\n    [fillBtn,brushBtn,eraserBtn].forEach(b=>b.classList.remove(\"active\"));\r\n    if(mode===\"fill\") fillBtn.classList.add(\"active\");\r\n    if(mode===\"brush\") brushBtn.classList.add(\"active\");\r\n    if(mode===\"eraser\") eraserBtn.classList.add(\"active\");\r\n  }\r\n\r\n  function save(){\r\n    undo.push(canvas.toDataURL(\"image\/png\"));\r\n    if(undo.length>50) undo.shift();\r\n    redo=[];\r\n  }\r\n\r\n  function restore(data){\r\n    const im=new Image();\r\n    im.onload=()=>{ctx.clearRect(0,0,canvas.width,canvas.height);ctx.drawImage(im,0,0)};\r\n    im.src=data;\r\n  }\r\n\r\n  function pos(e){\r\n    const r=canvas.getBoundingClientRect();\r\n    const t=e.touches?e.touches[0]:e;\r\n    return {\r\n      x:Math.floor((t.clientX-r.left)*(canvas.width\/r.width)),\r\n      y:Math.floor((t.clientY-r.top)*(canvas.height\/r.height))\r\n    };\r\n  }\r\n\r\n  function hexToRgb(hex){\r\n    hex=hex.replace(\"#\",\"\");\r\n    return [\r\n      parseInt(hex.substring(0,2),16),\r\n      parseInt(hex.substring(2,4),16),\r\n      parseInt(hex.substring(4,6),16),\r\n      255\r\n    ];\r\n  }\r\n\r\n  function close(a,b,t=45){\r\n    return Math.abs(a[0]-b[0])<t && Math.abs(a[1]-b[1])<t && Math.abs(a[2]-b[2])<t;\r\n  }\r\n\r\n  function bucketFill(x,y){\r\n    save();\r\n    const img=ctx.getImageData(0,0,canvas.width,canvas.height);\r\n    const data=img.data;\r\n    const w=canvas.width,h=canvas.height;\r\n    const i=(y*w+x)*4;\r\n    const target=[data[i],data[i+1],data[i+2],data[i+3]];\r\n    const repl=hexToRgb(color.value);\r\n    if(close(target,repl,5)) return;\r\n\r\n    const stack=[[x,y]];\r\n    while(stack.length){\r\n      const [cx,cy]=stack.pop();\r\n      if(cx<0||cy<0||cx>=w||cy>=h) continue;\r\n      const p=(cy*w+cx)*4;\r\n      const cur=[data[p],data[p+1],data[p+2],data[p+3]];\r\n      if(!close(cur,target)) continue;\r\n\r\n      data[p]=repl[0]; data[p+1]=repl[1]; data[p+2]=repl[2]; data[p+3]=255;\r\n\r\n      stack.push([cx+1,cy],[cx-1,cy],[cx,cy+1],[cx,cy-1]);\r\n    }\r\n    ctx.putImageData(img,0,0);\r\n  }\r\n\r\n  const img=new Image();\r\n  img.onload=function(){\r\n    canvas.width=img.naturalWidth;\r\n    canvas.height=img.naturalHeight;\r\n    ctx.drawImage(img,0,0);\r\n    baseImg=img;\r\n    save();\r\n  };\r\n  img.onerror=()=>alert(\"\u05d4\u05ea\u05de\u05d5\u05e0\u05d4 \u05dc\u05d0 \u05e0\u05d8\u05e2\u05e0\u05d4\");\r\n  img.src=imgUrl;\r\n\r\n  canvas.addEventListener(\"pointerdown\",e=>{\r\n    e.preventDefault();\r\n    const p=pos(e);\r\n\r\n    if(mode===\"fill\"){\r\n      bucketFill(p.x,p.y);\r\n      return;\r\n    }\r\n\r\n    save();\r\n    drawing=true;\r\n    ctx.beginPath();\r\n    ctx.moveTo(p.x,p.y);\r\n  });\r\n\r\n  canvas.addEventListener(\"pointermove\",e=>{\r\n    if(!drawing) return;\r\n    e.preventDefault();\r\n    const p=pos(e);\r\n    ctx.lineWidth=size.value;\r\n    ctx.lineCap=\"round\";\r\n    ctx.lineJoin=\"round\";\r\n    ctx.strokeStyle=mode===\"eraser\" ? \"#ffffff\" : color.value;\r\n    ctx.lineTo(p.x,p.y);\r\n    ctx.stroke();\r\n  });\r\n\r\n  window.addEventListener(\"pointerup\",()=>drawing=false);\r\n\r\n  fillBtn.onclick=()=>{mode=\"fill\";setActive()};\r\n  brushBtn.onclick=()=>{mode=\"brush\";setActive()};\r\n  eraserBtn.onclick=()=>{mode=\"eraser\";setActive()};\r\n\r\n  undoBtn.onclick=()=>{\r\n    if(undo.length<=1) return;\r\n    redo.push(undo.pop());\r\n    restore(undo[undo.length-1]);\r\n  };\r\n\r\n  redoBtn.onclick=()=>{\r\n    if(!redo.length) return;\r\n    const s=redo.pop();\r\n    undo.push(s);\r\n    restore(s);\r\n  };\r\n\r\n  clearBtn.onclick=()=>{\r\n    save();\r\n    ctx.clearRect(0,0,canvas.width,canvas.height);\r\n    ctx.drawImage(baseImg,0,0);\r\n  };\r\n\r\n  downloadBtn.onclick=()=>{\r\n    const a=document.createElement(\"a\");\r\n    a.download=\"coloring-page.png\";\r\n    a.href=canvas.toDataURL(\"image\/png\");\r\n    a.click();\r\n  };\r\n  \r\n  const coCursor = document.getElementById(\"coCursor\");\r\n\r\nfunction updateCursor(e){\r\n  const r = canvas.getBoundingClientRect();\r\n  const inside =\r\n    e.clientX >= r.left &&\r\n    e.clientX <= r.right &&\r\n    e.clientY >= r.top &&\r\n    e.clientY <= r.bottom;\r\n\r\n  if(!inside){\r\n    coCursor.style.left = \"-100px\";\r\n    coCursor.style.top = \"-100px\";\r\n    return;\r\n  }\r\n\r\n  coCursor.style.left = e.clientX + \"px\";\r\n  coCursor.style.top = e.clientY + \"px\";\r\n\r\n  if(mode === \"fill\"){\r\n    coCursor.textContent = \"\ud83e\udea3\";\r\n    coCursor.style.width = \"32px\";\r\n    coCursor.style.height = \"32px\";\r\n    coCursor.style.background = color.value;\r\n    coCursor.style.borderColor = \"#111\";\r\n  }\r\n\r\n  if(mode === \"brush\"){\r\n    coCursor.textContent = \"\";\r\n    coCursor.style.width = size.value + \"px\";\r\n    coCursor.style.height = size.value + \"px\";\r\n    coCursor.style.background = color.value;\r\n    coCursor.style.borderColor = \"#111\";\r\n  }\r\n\r\n  if(mode === \"eraser\"){\r\n    coCursor.textContent = \"\ud83e\uddfd\";\r\n    coCursor.style.width = size.value + \"px\";\r\n    coCursor.style.height = size.value + \"px\";\r\n    coCursor.style.background = \"#fff\";\r\n    coCursor.style.borderColor = \"#ff4d4d\";\r\n  }\r\n}\r\n\r\ndocument.addEventListener(\"mousemove\", updateCursor);\r\n\r\ncanvas.addEventListener(\"mouseleave\", function(){\r\n  coCursor.style.left = \"-100px\";\r\n  coCursor.style.top = \"-100px\";\r\n});\r\n\r\ncolor.addEventListener(\"input\", function(){\r\n  coCursor.style.background = color.value;\r\n});\r\n\r\nsize.addEventListener(\"input\", function(){\r\n  if(mode !== \"fill\"){\r\n    coCursor.style.width = size.value + \"px\";\r\n    coCursor.style.height = size.value + \"px\";\r\n  }\r\n});\r\n\r\n\r\n\r\n  setActive();\r\n})();\r\n<\/script>\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-56f0b09 e-flex e-con-boxed e-con e-parent\" data-id=\"56f0b09\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-4acf4d4 elementor-widget elementor-widget-html\" data-id=\"4acf4d4\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"html.default\">\n\t\t\t\t\t<div class=\"coloring-grid\">\r\n\r\n<div class=\"coloring-card\">\r\n    <img decoding=\"async\" src=\"https:\/\/studio-liat.co.il\/danino\/wp-content\/uploads\/2026\/06\/color1-rotated-e1782641478607.jpg\" alt=\"\u05d3\u05e3 \u05e6\u05d1\u05d9\u05e2\u05d4 1\">\r\n\r\n    <h2>\ud83c\udf88 \u05d3\u05e3 \u05e6\u05d1\u05d9\u05e2\u05d4 \u05de\u05e1' 1<\/h2>\r\n\r\n    <p>\r\n        \u05e6\u05d1\u05e2\u05d5 \u05d0\u05d5\u05e0\u05dc\u05d9\u05d9\u05df \u05d0\u05ea \u05d3\u05e3 \u05d4\u05e6\u05d1\u05d9\u05e2\u05d4 \u05d4\u05e8\u05d0\u05e9\u05d5\u05df \u05e9\u05dc\u05e0\u05d5! \u05d1\u05d7\u05e8\u05d5 \u05d0\u05ea \u05d4\u05e6\u05d1\u05e2\u05d9\u05dd \u05d4\u05d0\u05d4\u05d5\u05d1\u05d9\u05dd \u05e2\u05dc\u05d9\u05db\u05dd,\r\n        \u05d4\u05e9\u05ea\u05de\u05e9\u05d5 \u05d1\u05de\u05d1\u05e8\u05e9\u05ea \u05d0\u05d5 \u05d1\u05de\u05d9\u05dc\u05d5\u05d9 \u05e6\u05d1\u05e2 \u05d5\u05d4\u05d5\u05e8\u05d9\u05d3\u05d5 \u05d0\u05ea \u05d4\u05d9\u05e6\u05d9\u05e8\u05d4 \u05d4\u05de\u05d5\u05d2\u05de\u05e8\u05ea.\r\n    <\/p>\r\n\r\n    <a class=\"color-btn\" href=\"\/danino\/coloring-online\/?img=https:\/\/studio-liat.co.il\/danino\/wp-content\/uploads\/2026\/06\/color1-rotated-e1782641478607.jpg\">\r\n        \ud83c\udfa8 \u05e6\u05d1\u05e2 \u05d0\u05d5\u05e0\u05dc\u05d9\u05d9\u05df\r\n    <\/a>\r\n<\/div>\r\n\r\n\r\n<div class=\"coloring-card\">\r\n    <img decoding=\"async\" src=\"https:\/\/studio-liat.co.il\/danino\/wp-content\/uploads\/2026\/06\/color2.jpg\" alt=\"\u05d3\u05e3 \u05e6\u05d1\u05d9\u05e2\u05d4 2\">\r\n\r\n    <h2>\ud83e\udd84 \u05d3\u05e3 \u05e6\u05d1\u05d9\u05e2\u05d4 \u05de\u05e1' 2<\/h2>\r\n\r\n    <p>\r\n        \u05e2\u05d5\u05d3 \u05d3\u05e3 \u05e6\u05d1\u05d9\u05e2\u05d4 \u05de\u05d4\u05e0\u05d4 \u05d5\u05de\u05d9\u05d5\u05d7\u05d3 \u05dc\u05d9\u05dc\u05d3\u05d9\u05dd. \u05de\u05dc\u05d0\u05d5 \u05d0\u05ea \u05d4\u05e6\u05d9\u05d5\u05e8 \u05d1\u05e6\u05d1\u05e2\u05d9\u05dd \u05de\u05e8\u05d4\u05d9\u05d1\u05d9\u05dd,\r\n        \u05d7\u05d6\u05e8\u05d5 \u05d0\u05d7\u05d5\u05e8\u05d4 \u05d1\u05de\u05d9\u05d3\u05ea \u05d4\u05e6\u05d5\u05e8\u05da \u05d5\u05e9\u05de\u05e8\u05d5 \u05d0\u05ea \u05d4\u05d9\u05e6\u05d9\u05e8\u05d4 \u05d1\u05e1\u05d9\u05d5\u05dd.\r\n    <\/p>\r\n\r\n    <a class=\"color-btn\" href=\"\/danino\/coloring-online\/?img=https:\/\/studio-liat.co.il\/danino\/wp-content\/uploads\/2026\/06\/color2.jpg\">\r\n        \ud83c\udfa8 \u05e6\u05d1\u05e2 \u05d0\u05d5\u05e0\u05dc\u05d9\u05d9\u05df\r\n    <\/a>\r\n<\/div>\r\n\r\n\r\n<div class=\"coloring-card\">\r\n    <img decoding=\"async\" src=\"https:\/\/studio-liat.co.il\/danino\/wp-content\/uploads\/2026\/06\/color3.jpg\" alt=\"\u05d3\u05e3 \u05e6\u05d1\u05d9\u05e2\u05d4 3\">\r\n\r\n    <h2>\ud83c\udf08 \u05d3\u05e3 \u05e6\u05d1\u05d9\u05e2\u05d4 \u05de\u05e1' 3<\/h2>\r\n\r\n    <p>\r\n        \u05e9\u05d7\u05e8\u05e8\u05d5 \u05d0\u05ea \u05d4\u05d3\u05de\u05d9\u05d5\u05df \u05d5\u05e6\u05d1\u05e2\u05d5 \u05d0\u05ea \u05d4\u05d3\u05e3 \u05d1\u05d3\u05e8\u05da \u05d4\u05d9\u05e6\u05d9\u05e8\u05ea\u05d9\u05ea \u05d1\u05d9\u05d5\u05ea\u05e8.\r\n        \u05de\u05ea\u05d0\u05d9\u05dd \u05dc\u05d9\u05dc\u05d3\u05d9\u05dd \u05d1\u05db\u05dc \u05d4\u05d2\u05d9\u05dc\u05d0\u05d9\u05dd \u05d5\u05e0\u05d9\u05ea\u05df \u05dc\u05d4\u05d5\u05e8\u05d9\u05d3 \u05d0\u05ea \u05d4\u05ea\u05d5\u05e6\u05d0\u05d4 \u05d1\u05dc\u05d7\u05d9\u05e6\u05d4 \u05d0\u05d7\u05ea.\r\n    <\/p>\r\n\r\n    <a class=\"color-btn\" href=\"\/danino\/coloring-online\/?img=https:\/\/studio-liat.co.il\/danino\/wp-content\/uploads\/2026\/06\/color3.jpg\">\r\n        \ud83c\udfa8 \u05e6\u05d1\u05e2 \u05d0\u05d5\u05e0\u05dc\u05d9\u05d9\u05df\r\n    <\/a>\r\n<\/div>\r\n\r\n<\/div>\r\n\r\n<style>\r\n\r\n.coloring-grid{\r\ndisplay:grid;\r\ngrid-template-columns:repeat(auto-fit,minmax(320px,1fr));\r\ngap:30px;\r\ndirection:rtl;\r\nmargin:40px auto;\r\nmax-width:1300px;\r\n}\r\n\r\n.coloring-card{\r\nbackground:#fff;\r\nborder-radius:22px;\r\noverflow:hidden;\r\nbox-shadow:0 15px 40px rgba(0,0,0,.12);\r\ntransition:.3s;\r\ntext-align:center;\r\n}\r\n\r\n.coloring-card:hover{\r\ntransform:translateY(-8px);\r\nbox-shadow:0 20px 50px rgba(0,0,0,.18);\r\n}\r\n\r\n.coloring-card img{\r\nwidth:100%;\r\nheight:420px;\r\nobject-fit:contain;\r\nbackground:#fafafa;\r\npadding:20px;\r\n}\r\n\r\n.coloring-card h2{\r\nmargin:10px 20px;\r\nfont-size:28px;\r\ncolor:#333;\r\n}\r\n\r\n.coloring-card p{\r\nmargin:0 25px 25px;\r\nfont-size:17px;\r\nline-height:1.8;\r\ncolor:#666;\r\nmin-height:95px;\r\n}\r\n\r\n.color-btn{\r\ndisplay:inline-block;\r\nmargin-bottom:30px;\r\npadding:15px 35px;\r\nbackground:linear-gradient(135deg,#ffcb05,#ff9800);\r\ncolor:#222;\r\nfont-size:20px;\r\nfont-weight:bold;\r\nborder-radius:60px;\r\ntext-decoration:none;\r\ntransition:.25s;\r\n}\r\n\r\n.color-btn:hover{\r\ntransform:scale(1.05);\r\nbackground:linear-gradient(135deg,#ffd84d,#ffb300);\r\n}\r\n\r\n@media(max-width:768px){\r\n\r\n.coloring-card img{\r\nheight:320px;\r\n}\r\n\r\n.coloring-card h2{\r\nfont-size:24px;\r\n}\r\n\r\n.color-btn{\r\nfont-size:18px;\r\npadding:14px 28px;\r\n}\r\n\r\n}\r\n\r\n<\/style>\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t","protected":false},"excerpt":{"rendered":"<p>\u05de\u05d9\u05dc\u05d5\u05d9 \u05de\u05d1\u05e8\u05e9\u05ea \u05de\u05d7\u05e7 \u21a9 \u05d7\u05d6\u05d5\u05e8 \u21aa \u05e7\u05d3\u05d9\u05de\u05d4 \u05e0\u05e7\u05d4 \u05d4\u05d5\u05e8\u05d3 \ud83e\udea3 \ud83c\udf88 \u05d3\u05e3 \u05e6\u05d1\u05d9\u05e2\u05d4 \u05de\u05e1' 1 \u05e6\u05d1\u05e2\u05d5 \u05d0\u05d5\u05e0\u05dc\u05d9\u05d9\u05df \u05d0\u05ea \u05d3\u05e3 \u05d4\u05e6\u05d1\u05d9\u05e2\u05d4 \u05d4\u05e8\u05d0\u05e9\u05d5\u05df \u05e9\u05dc\u05e0\u05d5! \u05d1\u05d7\u05e8\u05d5 \u05d0\u05ea \u05d4\u05e6\u05d1\u05e2\u05d9\u05dd \u05d4\u05d0\u05d4\u05d5\u05d1\u05d9\u05dd \u05e2\u05dc\u05d9\u05db\u05dd, \u05d4\u05e9\u05ea\u05de\u05e9\u05d5 \u05d1\u05de\u05d1\u05e8\u05e9\u05ea \u05d0\u05d5 \u05d1\u05de\u05d9\u05dc\u05d5\u05d9 \u05e6\u05d1\u05e2 \u05d5\u05d4\u05d5\u05e8\u05d9\u05d3\u05d5 \u05d0\u05ea \u05d4\u05d9\u05e6\u05d9\u05e8\u05d4 \u05d4\u05de\u05d5\u05d2\u05de\u05e8\u05ea. \ud83c\udfa8 \u05e6\u05d1\u05e2 \u05d0\u05d5\u05e0\u05dc\u05d9\u05d9\u05df \ud83e\udd84 \u05d3\u05e3 \u05e6\u05d1\u05d9\u05e2\u05d4 \u05de\u05e1' 2 \u05e2\u05d5\u05d3 \u05d3\u05e3 \u05e6\u05d1\u05d9\u05e2\u05d4 \u05de\u05d4\u05e0\u05d4 \u05d5\u05de\u05d9\u05d5\u05d7\u05d3 \u05dc\u05d9\u05dc\u05d3\u05d9\u05dd. \u05de\u05dc\u05d0\u05d5 \u05d0\u05ea \u05d4\u05e6\u05d9\u05d5\u05e8 \u05d1\u05e6\u05d1\u05e2\u05d9\u05dd \u05de\u05e8\u05d4\u05d9\u05d1\u05d9\u05dd, [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"elementor_header_footer","meta":{"_acf_changed":false,"footnotes":""},"class_list":["post-1020","page","type-page","status-publish","hentry"],"acf":[],"_links":{"self":[{"href":"https:\/\/studio-liat.co.il\/danino\/wp-json\/wp\/v2\/pages\/1020","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/studio-liat.co.il\/danino\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/studio-liat.co.il\/danino\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/studio-liat.co.il\/danino\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/studio-liat.co.il\/danino\/wp-json\/wp\/v2\/comments?post=1020"}],"version-history":[{"count":29,"href":"https:\/\/studio-liat.co.il\/danino\/wp-json\/wp\/v2\/pages\/1020\/revisions"}],"predecessor-version":[{"id":1057,"href":"https:\/\/studio-liat.co.il\/danino\/wp-json\/wp\/v2\/pages\/1020\/revisions\/1057"}],"wp:attachment":[{"href":"https:\/\/studio-liat.co.il\/danino\/wp-json\/wp\/v2\/media?parent=1020"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}