{"id":1845,"date":"2025-03-20T08:33:46","date_gmt":"2025-03-20T08:33:46","guid":{"rendered":"https:\/\/donhit.com\/en\/?p=1845"},"modified":"2025-11-23T07:05:59","modified_gmt":"2025-11-23T07:05:59","slug":"calcium-food-calculator-for-growth","status":"publish","type":"post","link":"https:\/\/donhit.com\/en\/calculator\/calcium-food-calculator-for-growth\/","title":{"rendered":"Calcium Food Calculator for Growth"},"content":{"rendered":"<p><center> <div class=\"container123\">\r\n        <h2>Calcium Food Calculator for Growth<\/h2>\r\n        \r\n        <div class=\"calculator-section\">\r\n            <div class=\"food-selector\">\r\n                <h2>Select Foods<\/h2>\r\n                <input type=\"text\" class=\"search-box\" placeholder=\"Search foods...\" id=\"searchInput\" oninput=\"filterFoods()\">\r\n                \r\n                <div class=\"category-filter\" id=\"categoryFilter\">\r\n                    <!-- Categories will be populated by JavaScript -->\r\n                <\/div>\r\n\r\n                <div class=\"food-list\" id=\"foodList\">\r\n                    <!-- Foods will be populated by JavaScript -->\r\n                <\/div>\r\n            <\/div>\r\n\r\n            <div class=\"selected-foods\">\r\n                <h2>Selected Foods<\/h2>\r\n                <div id=\"selectedFoodsList\">\r\n                    <!-- Selected foods will be populated by JavaScript -->\r\n                <\/div>\r\n                \r\n                <div class=\"total-section\">\r\n                    <h3>Total Calcium Intake<\/h3>\r\n                    <div id=\"totalCalcium\">0 mg \/ 1300 mg recommended daily<\/div>\r\n                    <div class=\"progress-container\">\r\n                        <div class=\"progress-bar\">\r\n                            <div class=\"progress-fill\" id=\"progressBar\" style=\"width: 0%\"><\/div>\r\n                        <\/div>\r\n                    <\/div>\r\n                <\/div>\r\n            <\/div>\r\n        <\/div>\r\n    <\/div>\r\n\r\n    <script>\r\n        \/\/ Comprehensive food database\r\n        const foodDatabase = {\r\n            'Dairy Products': {\r\n                'Whole Milk': { calcium: 300, unit: 'cup', size: 240, type: 'ml' },\r\n                'Low-fat Milk': { calcium: 305, unit: 'cup', size: 240, type: 'ml' },\r\n                'Greek Yogurt': { calcium: 450, unit: 'cup', size: 245, type: 'g' },\r\n                'Regular Yogurt': { calcium: 415, unit: 'cup', size: 245, type: 'g' },\r\n                'Cheddar Cheese': { calcium: 307, unit: 'slice', size: 30, type: 'g' },\r\n                'Mozzarella Cheese': { calcium: 333, unit: 'slice', size: 30, type: 'g' },\r\n                'Cottage Cheese': { calcium: 187, unit: 'cup', size: 226, type: 'g' },\r\n                'Ice Cream': { calcium: 188, unit: 'cup', size: 137, type: 'g' }\r\n            },\r\n            'Fish and Seafood': {\r\n                'Sardines with Bones': { calcium: 325, unit: 'serving', size: 85, type: 'g' },\r\n                'Salmon with Bones': { calcium: 180, unit: 'serving', size: 85, type: 'g' },\r\n                'Mackerel': { calcium: 150, unit: 'serving', size: 85, type: 'g' },\r\n                'Shrimp': { calcium: 111, unit: 'serving', size: 85, type: 'g' }\r\n            },\r\n            'Vegetables': {\r\n                'Kale (Raw)': { calcium: 150, unit: 'cup', size: 67, type: 'g' },\r\n                'Spinach (Cooked)': { calcium: 245, unit: 'cup', size: 180, type: 'g' },\r\n                'Broccoli (Cooked)': { calcium: 62, unit: 'cup', size: 156, type: 'g' },\r\n                'Bok Choy': { calcium: 158, unit: 'cup', size: 170, type: 'g' },\r\n                'Collard Greens': { calcium: 266, unit: 'cup', size: 190, type: 'g' },\r\n                'Turnip Greens': { calcium: 200, unit: 'cup', size: 170, type: 'g' }\r\n            },\r\n            'Nuts and Seeds': {\r\n                'Almonds': { calcium: 75, unit: 'oz', size: 28, type: 'g' },\r\n                'Brazil Nuts': { calcium: 45, unit: 'oz', size: 28, type: 'g' },\r\n                'Chia Seeds': { calcium: 179, unit: 'oz', size: 28, type: 'g' },\r\n                'Sesame Seeds': { calcium: 277, unit: 'oz', size: 28, type: 'g' }\r\n            },\r\n            'Plant-Based': {\r\n                'Tofu (Calcium-set)': { calcium: 350, unit: 'half-cup', size: 126, type: 'g' },\r\n                'Soy Milk (Fortified)': { calcium: 300, unit: 'cup', size: 240, type: 'ml' },\r\n                'Almond Milk (Fortified)': { calcium: 300, unit: 'cup', size: 240, type: 'ml' },\r\n                'Navy Beans': { calcium: 127, unit: 'cup', size: 182, type: 'g' }\r\n            }\r\n        };\r\n\r\n        let selectedFoods = [];\r\n\r\n        \/\/ Initialize the page\r\n        function init() {\r\n            createCategoryButtons();\r\n            displayFoodList();\r\n            updateTotalCalcium();\r\n        }\r\n\r\n        \/\/ Create category filter buttons\r\n        function createCategoryButtons() {\r\n            const categoryFilter = document.getElementById('categoryFilter');\r\n            const categories = Object.keys(foodDatabase);\r\n            \r\n            categoryFilter.innerHTML = `\r\n                <button class=\"category-btn active\" onclick=\"filterByCategory('all')\">All<\/button>\r\n                ${categories.map(category => \r\n                    `<button class=\"category-btn\" onclick=\"filterByCategory('${category}')\">${category}<\/button>`\r\n                ).join('')}\r\n            `;\r\n        }\r\n\r\n        \/\/ Filter foods by category\r\n        function filterByCategory(category) {\r\n            document.querySelectorAll('.category-btn').forEach(btn => btn.classList.remove('active'));\r\n            event.target.classList.add('active');\r\n            displayFoodList(category);\r\n        }\r\n\r\n        \/\/ Display foods in the list\r\n        function displayFoodList(category = 'all') {\r\n            const foodList = document.getElementById('foodList');\r\n            let foodsHtml = '';\r\n\r\n            if (category === 'all') {\r\n                Object.entries(foodDatabase).forEach(([cat, foods]) => {\r\n                    Object.entries(foods).forEach(([name, data]) => {\r\n                        foodsHtml += createFoodItemHtml(name, data, cat);\r\n                    });\r\n                });\r\n            } else {\r\n                Object.entries(foodDatabase[category]).forEach(([name, data]) => {\r\n                    foodsHtml += createFoodItemHtml(name, data, category);\r\n                });\r\n            }\r\n\r\n            foodList.innerHTML = foodsHtml;\r\n        }\r\n\r\n        \/\/ Create HTML for food item\r\n        function createFoodItemHtml(name, data, category) {\r\n            return `\r\n                <div class=\"food-item\" onclick=\"addFood('${name}', ${data.calcium}, '${data.unit}', ${data.size}, '${data.type}')\">\r\n                    <span>${name}<\/span>\r\n                    <span>${data.calcium}mg \/ ${data.unit}<\/span>\r\n                <\/div>\r\n            `;\r\n        }\r\n\r\n        \/\/ Add food to selected list\r\n        function addFood(name, calcium, unit, size, type) {\r\n            selectedFoods.push({ name, calcium, unit, size, type, quantity: 1 });\r\n            updateSelectedFoodsList();\r\n            updateTotalCalcium();\r\n        }\r\n\r\n        \/\/ Update selected foods list\r\n        function updateSelectedFoodsList() {\r\n            const selectedFoodsList = document.getElementById('selectedFoodsList');\r\n            selectedFoodsList.innerHTML = selectedFoods.map((food, index) => `\r\n                <div class=\"selected-food-item\">\r\n                    <span>${food.name}<\/span>\r\n                    <div>\r\n                        <input type=\"number\" class=\"quantity-input\" value=\"${food.quantity}\" \r\n                            onchange=\"updateQuantity(${index}, this.value)\" min=\"0.1\" step=\"0.1\">\r\n                        <span>${food.unit}<\/span>\r\n                        <button class=\"remove-btn\" onclick=\"removeFood(${index})\">\u2715<\/button>\r\n                    <\/div>\r\n                <\/div>\r\n            `).join('');\r\n        }\r\n\r\n        \/\/ Update food quantity\r\n        function updateQuantity(index, quantity) {\r\n            selectedFoods[index].quantity = parseFloat(quantity);\r\n            updateTotalCalcium();\r\n        }\r\n\r\n        \/\/ Remove food from selected list\r\n        function removeFood(index) {\r\n            selectedFoods.splice(index, 1);\r\n            updateSelectedFoodsList();\r\n            updateTotalCalcium();\r\n        }\r\n\r\n        \/\/ Calculate and update total calcium\r\n        function updateTotalCalcium() {\r\n            const total = selectedFoods.reduce((sum, food) => \r\n                sum + (food.calcium * food.quantity), 0);\r\n            \r\n            const percentage = Math.min((total \/ 1300) * 100, 100);\r\n            \r\n            document.getElementById('totalCalcium').textContent = \r\n                `${Math.round(total)} mg \/ 1300 mg recommended daily`;\r\n            document.getElementById('progressBar').style.width = `${percentage}%`;\r\n        }\r\n\r\n        \/\/ Filter foods by search input\r\n        function filterFoods() {\r\n            const searchText = document.getElementById('searchInput').value.toLowerCase();\r\n            const foodItems = document.querySelectorAll('.food-item');\r\n            \r\n            foodItems.forEach(item => {\r\n                const foodName = item.querySelector('span').textContent.toLowerCase();\r\n                item.style.display = foodName.includes(searchText) ? 'flex' : 'none';\r\n            });\r\n        }\r\n\r\n        \/\/ Initialize the page\r\n        init();\r\n    <\/script><\/center><\/p>\n<p>Calcium plays a <strong>vital role in bone development<\/strong> and overall growth, especially during key life stages like childhood, adolescence, and early adulthood. Adequate <strong>calcium intake<\/strong> strengthens bones, enhances <strong>bone density<\/strong>, and supports essential bodily functions such as muscle contraction and nerve signaling. Without sufficient calcium, individuals may face delayed <strong>growth milestones<\/strong> and an increased risk of bone-related issues like osteoporosis later in life. Understanding your <strong>daily calcium requirement<\/strong> and meeting it through a balanced diet is crucial for achieving optimal growth and maintaining long-term health.<\/p>\n<p>A <strong>calcium food calculator<\/strong> is a powerful <strong>nutrition tool<\/strong> that helps you <strong>track calcium consumption<\/strong> from various <strong>dietary sources<\/strong>. It allows users to input daily food intake and receive precise estimates of their <strong>calcium absorption<\/strong> levels. This tool is especially beneficial for <strong>growth optimization<\/strong>, as it helps identify calcium-rich foods like dairy products, leafy greens, and fortified alternatives. By using a <strong>calcium calculator for growth<\/strong>, individuals can <strong>monitor nutrient intake<\/strong>, ensure they meet <strong>optimal intake levels<\/strong>, and adjust their diet to promote healthy bone structure. Whether you are a parent tracking a child&#8217;s <strong>growth-friendly calcium foods<\/strong> or an adult aiming to preserve bone health, a <strong>daily calcium intake tool<\/strong> offers personalized guidance for better nutrition management.<\/p>\n<h2><strong>Why Calcium is Crucial for Growth<\/strong><\/h2>\n<p>Calcium plays a <strong>vital role in bone growth<\/strong> by supporting the development and maintenance of a strong skeletal system. During childhood and adolescence, calcium is essential for <strong>bone mineralization<\/strong>, where osteoblasts\u2014cells responsible for forming new bone tissue\u2014actively deposit calcium to strengthen growth plates. These growth plates, located at the ends of long bones, drive <strong>linear growth<\/strong> during growth spurts. Adequate calcium intake during these critical periods ensures optimal <strong>bone density<\/strong> and reduces the risk of fractures. Additionally, calcium regulates <strong>cellular functions<\/strong> like nerve transmission, muscle contraction, and hormone secretion, which are crucial for overall physiological development.<\/p>\n<p>A deficiency in calcium can lead to <strong>serious long-term health consequences<\/strong>, especially during formative years. Insufficient calcium intake disrupts <strong>calcium metabolism<\/strong>, forcing the body to draw calcium from bones, weakening their structure and increasing the risk of <strong>osteoporosis<\/strong> later in life. In growing children, chronic calcium deficiency may impair growth velocity and delay puberty due to its impact on <strong>hormonal regulation<\/strong>. Ensuring consistent calcium intake through <strong>dietary sources<\/strong> such as dairy products, leafy greens, and fortified foods is essential for sustaining <strong>bone health<\/strong> and supporting <strong>pediatric growth<\/strong>.<\/p>\n<h2><strong>How a Calcium Food Calculator Works<\/strong><\/h2>\n<p>A <strong>calcium food calculator<\/strong> functions by analyzing the calcium content of various foods to help users track and manage their daily calcium intake. Users input details such as food items, portion sizes, and quantities into the <strong>nutrient calculator<\/strong>, which then cross-references this data with a <strong>comprehensive food database<\/strong>. This database contains standardized values for calcium and other essential nutrients. Through <strong>calcium content analysis<\/strong>, the calculator provides an accurate measurement of how much calcium is consumed, enabling better management of <strong>dietary calcium<\/strong> levels.<\/p>\n<p>Unlike manual tracking, which requires researching and recording calcium values from food labels or nutritional charts, an <strong>automated calcium measurement tool<\/strong> streamlines this process by instantly calculating intake. Many <strong>digital health tools<\/strong> offer advanced features like <strong>portion size adjustment<\/strong> and <strong>personalized nutrition<\/strong> recommendations based on age, gender, or health goals. This automation reduces human error, improves accuracy, and saves time. By using a <strong>food-based calcium calculator<\/strong>, individuals can better monitor their calcium consumption and make informed decisions to maintain <strong>optimal bone health<\/strong>.<\/p>\n<p><a href=\"https:\/\/www.nubest.com\/\">NuBest.com<\/a><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Calcium plays a vital role in bone development and overall growth, especially during key life stages like childhood, adolescence, and early adulthood. Adequate calcium intake strengthens bones, enhances bone density, and supports essential bodily functions such as muscle contraction and nerve signaling. Without sufficient calcium, individuals may face delayed growth milestones and an increased risk [&#8230;]\n","protected":false},"author":1,"featured_media":2350,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[184],"tags":[],"class_list":["post-1845","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-calculator"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.0 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Calcium Food Calculator for Growth - DonHit<\/title>\n<meta name=\"description\" content=\"Track your calcium intake with a calcium food calculator. Easily measure and manage dietary calcium for optimal bone health and growth.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/donhit.com\/en\/calculator\/calcium-food-calculator-for-growth\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Calcium Food Calculator for Growth - DonHit\" \/>\n<meta property=\"og:description\" content=\"Track your calcium intake with a calcium food calculator. Easily measure and manage dietary calcium for optimal bone health and growth.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/donhit.com\/en\/calculator\/calcium-food-calculator-for-growth\/\" \/>\n<meta property=\"og:site_name\" content=\"DonHit - World of Tools\" \/>\n<meta property=\"article:published_time\" content=\"2025-03-20T08:33:46+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-11-23T07:05:59+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/donhit.com\/en\/wp-content\/uploads\/2025\/01\/Calcium-Food-Calculator-for-Growth.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"640\" \/>\n\t<meta property=\"og:image:height\" content=\"427\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"DonHit\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"DonHit\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Calcium Food Calculator for Growth - DonHit","description":"Track your calcium intake with a calcium food calculator. Easily measure and manage dietary calcium for optimal bone health and growth.","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:\/\/donhit.com\/en\/calculator\/calcium-food-calculator-for-growth\/","og_locale":"en_US","og_type":"article","og_title":"Calcium Food Calculator for Growth - DonHit","og_description":"Track your calcium intake with a calcium food calculator. Easily measure and manage dietary calcium for optimal bone health and growth.","og_url":"https:\/\/donhit.com\/en\/calculator\/calcium-food-calculator-for-growth\/","og_site_name":"DonHit - World of Tools","article_published_time":"2025-03-20T08:33:46+00:00","article_modified_time":"2025-11-23T07:05:59+00:00","og_image":[{"width":640,"height":427,"url":"https:\/\/donhit.com\/en\/wp-content\/uploads\/2025\/01\/Calcium-Food-Calculator-for-Growth.jpg","type":"image\/jpeg"}],"author":"DonHit","twitter_card":"summary_large_image","twitter_misc":{"Written by":"DonHit","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/donhit.com\/en\/calculator\/calcium-food-calculator-for-growth\/#article","isPartOf":{"@id":"https:\/\/donhit.com\/en\/calculator\/calcium-food-calculator-for-growth\/"},"author":{"name":"DonHit","@id":"https:\/\/donhit.com\/en\/#\/schema\/person\/0c6ff7dcd8ba4810c56a532f09c33148"},"headline":"Calcium Food Calculator for Growth","datePublished":"2025-03-20T08:33:46+00:00","dateModified":"2025-11-23T07:05:59+00:00","mainEntityOfPage":{"@id":"https:\/\/donhit.com\/en\/calculator\/calcium-food-calculator-for-growth\/"},"wordCount":576,"commentCount":0,"publisher":{"@id":"https:\/\/donhit.com\/en\/#\/schema\/person\/0c6ff7dcd8ba4810c56a532f09c33148"},"image":{"@id":"https:\/\/donhit.com\/en\/calculator\/calcium-food-calculator-for-growth\/#primaryimage"},"thumbnailUrl":"https:\/\/donhit.com\/en\/wp-content\/uploads\/2025\/01\/Calcium-Food-Calculator-for-Growth.jpg","articleSection":["Calculator"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/donhit.com\/en\/calculator\/calcium-food-calculator-for-growth\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/donhit.com\/en\/calculator\/calcium-food-calculator-for-growth\/","url":"https:\/\/donhit.com\/en\/calculator\/calcium-food-calculator-for-growth\/","name":"Calcium Food Calculator for Growth - DonHit","isPartOf":{"@id":"https:\/\/donhit.com\/en\/#website"},"primaryImageOfPage":{"@id":"https:\/\/donhit.com\/en\/calculator\/calcium-food-calculator-for-growth\/#primaryimage"},"image":{"@id":"https:\/\/donhit.com\/en\/calculator\/calcium-food-calculator-for-growth\/#primaryimage"},"thumbnailUrl":"https:\/\/donhit.com\/en\/wp-content\/uploads\/2025\/01\/Calcium-Food-Calculator-for-Growth.jpg","datePublished":"2025-03-20T08:33:46+00:00","dateModified":"2025-11-23T07:05:59+00:00","description":"Track your calcium intake with a calcium food calculator. Easily measure and manage dietary calcium for optimal bone health and growth.","breadcrumb":{"@id":"https:\/\/donhit.com\/en\/calculator\/calcium-food-calculator-for-growth\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/donhit.com\/en\/calculator\/calcium-food-calculator-for-growth\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/donhit.com\/en\/calculator\/calcium-food-calculator-for-growth\/#primaryimage","url":"https:\/\/donhit.com\/en\/wp-content\/uploads\/2025\/01\/Calcium-Food-Calculator-for-Growth.jpg","contentUrl":"https:\/\/donhit.com\/en\/wp-content\/uploads\/2025\/01\/Calcium-Food-Calculator-for-Growth.jpg","width":640,"height":427,"caption":"Calcium Food Calculator for Growth"},{"@type":"BreadcrumbList","@id":"https:\/\/donhit.com\/en\/calculator\/calcium-food-calculator-for-growth\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Trang ch\u1ee7","item":"https:\/\/donhit.com\/en\/"},{"@type":"ListItem","position":2,"name":"Calculator","item":"https:\/\/donhit.com\/en\/category\/calculator\/"},{"@type":"ListItem","position":3,"name":"Calcium Food Calculator for Growth"}]},{"@type":"WebSite","@id":"https:\/\/donhit.com\/en\/#website","url":"https:\/\/donhit.com\/en\/","name":"DonHit - World of tools","description":"","publisher":{"@id":"https:\/\/donhit.com\/en\/#\/schema\/person\/0c6ff7dcd8ba4810c56a532f09c33148"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/donhit.com\/en\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":["Person","Organization"],"@id":"https:\/\/donhit.com\/en\/#\/schema\/person\/0c6ff7dcd8ba4810c56a532f09c33148","name":"DonHit","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/donhit.com\/en\/#\/schema\/person\/image\/","url":"https:\/\/donhit.com\/en\/wp-content\/uploads\/2024\/11\/logo-donhit.webp","contentUrl":"https:\/\/donhit.com\/en\/wp-content\/uploads\/2024\/11\/logo-donhit.webp","width":400,"height":267,"caption":"DonHit"},"logo":{"@id":"https:\/\/donhit.com\/en\/#\/schema\/person\/image\/"},"description":"DonHit is a website designed to provide useful tools for everyone. Its primary goal is to support and empower the community. All the tools available on the site are completely free to use.","sameAs":["https:\/\/donhit.com\/en"],"url":"https:\/\/donhit.com\/en\/author\/admin_don\/"}]}},"_links":{"self":[{"href":"https:\/\/donhit.com\/en\/wp-json\/wp\/v2\/posts\/1845","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/donhit.com\/en\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/donhit.com\/en\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/donhit.com\/en\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/donhit.com\/en\/wp-json\/wp\/v2\/comments?post=1845"}],"version-history":[{"count":6,"href":"https:\/\/donhit.com\/en\/wp-json\/wp\/v2\/posts\/1845\/revisions"}],"predecessor-version":[{"id":3413,"href":"https:\/\/donhit.com\/en\/wp-json\/wp\/v2\/posts\/1845\/revisions\/3413"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/donhit.com\/en\/wp-json\/wp\/v2\/media\/2350"}],"wp:attachment":[{"href":"https:\/\/donhit.com\/en\/wp-json\/wp\/v2\/media?parent=1845"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/donhit.com\/en\/wp-json\/wp\/v2\/categories?post=1845"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/donhit.com\/en\/wp-json\/wp\/v2\/tags?post=1845"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}