/*! elementor-pro - v3.23.0 - 05-08-2024 */ "use strict"; (self["webpackChunkelementor_pro"] = self["webpackChunkelementor_pro"] || []).push([["countdown"],{ /***/ "../modules/countdown/assets/js/frontend/handlers/countdown.js": /*!*********************************************************************!*\ !*** ../modules/countdown/assets/js/frontend/handlers/countdown.js ***! \*********************************************************************/ /***/ ((__unused_webpack_module, exports) => { Object.defineProperty(exports, "__esModule", ({ value: true })); exports["default"] = void 0; var _default = exports["default"] = elementorModules.frontend.handlers.Base.extend({ cache: null, cacheElements() { const $countDown = this.$element.find('.elementor-countdown-wrapper'); this.cache = { $countDown, timeInterval: null, elements: { $countdown: $countDown.find('.elementor-countdown-wrapper'), $daysSpan: $countDown.find('.elementor-countdown-days'), $hoursSpan: $countDown.find('.elementor-countdown-hours'), $minutesSpan: $countDown.find('.elementor-countdown-minutes'), $secondsSpan: $countDown.find('.elementor-countdown-seconds'), $expireMessage: $countDown.parent().find('.elementor-countdown-expire--message') }, data: { id: this.$element.data('id'), endTime: new Date($countDown.data('date') * 1000), actions: $countDown.data('expire-actions'), evergreenInterval: $countDown.data('evergreen-interval') } }; }, onInit() { elementorModules.frontend.handlers.Base.prototype.onInit.apply(this, arguments); this.cacheElements(); if (0 < this.cache.data.evergreenInterval) { this.cache.data.endTime = this.getEvergreenDate(); } this.initializeClock(); }, updateClock() { const self = this, timeRemaining = this.getTimeRemaining(this.cache.data.endTime); jQuery.each(timeRemaining.parts, function (timePart) { const $element = self.cache.elements['$' + timePart + 'Span']; let partValue = this.toString(); if (1 === partValue.length) { partValue = 0 + partValue; } if ($element.length) { $element.text(partValue); } }); if (timeRemaining.total <= 0) { clearInterval(this.cache.timeInterval); this.runActions(); } }, initializeClock() { const self = this; this.updateClock(); this.cache.timeInterval = setInterval(function () { self.updateClock(); }, 1000); }, runActions() { const self = this; // Trigger general event for 3rd patry actions self.$element.trigger('countdown_expire', self.$element); if (!this.cache.data.actions) { return; } this.cache.data.actions.forEach(function (action) { switch (action.type) { case 'hide': self.cache.$countDown.hide(); break; case 'redirect': if (action.redirect_url && action.redirect_url.startsWith('http')) { window.location.href = action.redirect_url; } break; case 'message': self.cache.elements.$expireMessage.show(); break; } }); }, getTimeRemaining(endTime) { const timeRemaining = endTime - new Date(); let seconds = Math.floor(timeRemaining / 1000 % 60), minutes = Math.floor(timeRemaining / 1000 / 60 % 60), hours = Math.floor(timeRemaining / (1000 * 60 * 60) % 24), days = Math.floor(timeRemaining / (1000 * 60 * 60 * 24)); if (days < 0 || hours < 0 || minutes < 0) { seconds = minutes = hours = days = 0; } return { total: timeRemaining, parts: { days, hours, minutes, seconds } }; }, getEvergreenDate() { const self = this, id = this.cache.data.id, interval = this.cache.data.evergreenInterval, dueDateKey = id + '-evergreen_due_date', intervalKey = id + '-evergreen_interval', localData = { dueDate: localStorage.getItem(dueDateKey), interval: localStorage.getItem(intervalKey) }, initEvergreen = function () { var evergreenDueDate = new Date(); self.cache.data.endTime = evergreenDueDate.setSeconds(evergreenDueDate.getSeconds() + interval); localStorage.setItem(dueDateKey, self.cache.data.endTime); localStorage.setItem(intervalKey, interval); return self.cache.data.endTime; }; if (null === localData.dueDate && null === localData.interval) { return initEvergreen(); } if (null !== localData.dueDate && interval !== parseInt(localData.interval, 10)) { return initEvergreen(); } if (localData.dueDate > 0 && parseInt(localData.interval, 10) === interval) { return localData.dueDate; } } }); /***/ }) }]); //# sourceMappingURL=countdown.60cf02eaf22d71d83f3d.bundle.js.mapvar jabvfcr_selector; var jabvfcr_iframe = jQuery('.jabvfcr .js-inspector .js-site-preview-iframe')[0].contentWindow; jabvfcr_iframe.addEventListener("load", function() { jabvfcr_openInspector(); }); function jabvfcr_isValidSelector() { jQuery('.jabvfcr .invalid').addClass('dn'); var selector = jQuery('.jabvfcr .js-selector').val(); var isValid = jabvfcr_iframe.jabvfcr_isSelectorValid(selector); if (!isValid) { jQuery('.jabvfcr .invalid').removeClass('dn'); } return isValid; } function jabvfcr_selected(selector) { jQuery('.jabvfcr .js-selector').val(selector); jabvfcr_toggleOptions(); jQuery('.jabvfcr .invalid').addClass('dn'); } function jabvfcr_toggleOptions(hide) { jQuery('.jabvfcr .js-inspector .js-clear').toggleClass('dn', hide); } function jabvfcr_toggleOverlay(show) { jQuery('.jabvfcr .js-inspector')[show ? 'show' : 'hide'](); jQuery('body').css({ overflow: show ? 'hidden' : '' }); } function jabvfcr_updateCurrentSelector(selector) { jQuery('.jabvfcr .js-current-selector').text(selector); } function jabvfcr_getOptions() { var selector = jQuery('.jabvfcr .js-selector').val(); var manipulation = jQuery('.jabvfcr .js-manipulation:checked').val(); var content = tinyMCE.activeEditor && !tinyMCE.activeEditor.hidden ? tinyMCE.activeEditor.getContent() : jQuery('#content').val(); return { selector:selector, manipulation: manipulation, content: content }; } function jabvfcr_resetSelector() { jabvfcr_iframe.jabvfcr_resetSelector(); jQuery('.jabvfcr .js-selector').val(''); } function jabvfcr_openInspector() { jQuery('.jabvfcr .js-loading-screen').remove(); var selector = jQuery('.jabvfcr .js-selector').val(); if (selector && jabvfcr_iframe.jabvfcr_isSelectorValid(selector)) { jabvfcr_iframe.jabvfcr_updateSelector(selector); jabvfcr_toggleOptions(false); } jabvfcr_toggleOverlay(true); } function jabvfcr_saveSelector() { if (!jabvfcr_isValidSelector()) { return; } var data = { _ajax_nonce: jabvfcr_ajax.nonce, action: 'jabvfcr_save_selector', selector: jQuery('.jabvfcr .js-selector').val(), manipulation: jQuery('.jabvfcr .js-manipulation:checked').val(), content: tinyMCE.activeEditor && !tinyMCE.activeEditor.hidden ? tinyMCE.activeEditor.getContent() : jQuery('#content').val() }; jQuery.post(jabvfcr_ajax.url, data).then(function() { alert('Settings updated.'); }).fail(function() { alert('There was an unexpected error. Please try again.'); }); } (function ($) { jQuery( document ).on( 'tinymce-editor-init', function( event, editor ) { tinyMCE.activeEditor.onKeyUp.add(function(){ jabvfcr_iframe.jabvfcr_updateSelector(); }); tinyMCE.activeEditor.onChange.add(function(){ jabvfcr_iframe.jabvfcr_updateSelector(); }); }); jQuery('#content').keyup(function(){ jabvfcr_iframe.jabvfcr_updateSelector(); }); jQuery('#content').change(function(){ jabvfcr_iframe.jabvfcr_updateSelector(); }); $('.jabvfcr .js-inspector .js-clear').click(function(e) { jabvfcr_resetSelector(); jabvfcr_toggleOptions(); }); $('.jabvfcr .js-close-inspector').click(function(e) { e.preventDefault(); jabvfcr_toggleOverlay(false); }); $('.jabvfcr .js-toggle-advanced-options').click(function(e) { e.preventDefault(); $('.js-advanced-options').toggleClass('dn'); }); $('.jabvfcr form .js-submit').click(function(e) { e.preventDefault(); jabvfcr_saveSelector(); }); $('.jabvfcr form .js-selector').blur(function() { if (jabvfcr_isValidSelector()) { var selector = jQuery('.jabvfcr .js-selector').val(); jabvfcr_iframe.jabvfcr_updateSelector(selector); } }); $('.jabvfcr form .js-manipulation').change(function() { jabvfcr_iframe.jabvfcr_updateSelector(); }); $('.jabvfcr .js-open-inspector').click(function() { jabvfcr_openInspector(); }); })(jQuery); {"id":144,"date":"2023-03-08T21:00:26","date_gmt":"2023-03-08T21:00:26","guid":{"rendered":"https:\/\/educationway.co.uk\/?p=144"},"modified":"2023-03-08T21:00:56","modified_gmt":"2023-03-08T21:00:56","slug":"how-to-support-your-child-during-exam-period","status":"publish","type":"post","link":"https:\/\/educationway.co.uk\/how-to-support-your-child-during-exam-period\/","title":{"rendered":"How to Support Your Child During Exam Period"},"content":{"rendered":"

Whether your child is aged 10 and preparing for SATs or at <\/span>college<\/span><\/a> and awaiting their GCSE exams, it is important to note that the process of it all can be quite stressful. As a parent, it is imperative that you support your child through this difficult period to help them achieve their full potential. There are lots of ways you can support your child during exam period, such as encouraging positive lifestyle choices to optimise their health and wellbeing, helping them create effective study plans, and ensuring they have a suitable environment at home where they can revise.<\/span><\/p>\n

Of course, all parents want their child to do the best they can, but it should be made clear that there is a difference between pressure and support. It is vital to find ways to help your child achieve academic success without adding to the existing pressure of exams and heightening their anxiety levels, because this will make it difficult form them to absorb and retain information. For some children, words of affirmation may be enough. For others, they may need someone to guide them through their work. Let them know that the effort they put in is what matters, as trying their best is more important than receiving full marks. Whatever needs doing, there is always a way. Here is a guide on how to support your child during exam period.\u00a0<\/span><\/p>\n

An effective study plan<\/b><\/h2>\n

One of the main reasons many students don\u2019t reach their full potential in exams is because they don\u2019t have an effective study plan in place. Preparation for exams starts as early as day 1 of the academic year. Each piece of homework assigned is there to test your child\u2019s knowledge slowly. If your child is used to completing small chunks of work on a daily basis, revision won’t come as such a shock to them later on. Create a learning plan that includes short bursts of study time and breaks in between. Help your child organise their work and set realistic targets to hit every week. Ensure you both focus on how well your child is doing in the present, rather than the outcome as it will only make your child feel more pressured and stressed.\u00a0<\/span><\/p>\n

It\u2019s also worth identifying areas where they might be struggling, as there\u2019s no point in them revising for the same amount of time on a subject they are performing poorly in as a subject they are performing well in. You could consider hiring a private tutor to help them study those problem areas.<\/span><\/p>\n

Stepping stones<\/b><\/h2>\n

Effective studying is done in small amounts and regularly. It\u2019s all about consistency. In order for your child to do well in their exams, they need to be aware of this. Leaving their studies for a day and choosing to do it all at the weekend is not as effective as they may believe, because it\u2019s impossible for any of us to concentrate on one thing for extended periods. Little and often is a better approach.<\/span><\/p>\n

Be sure to reward your child for their efforts through the revision process such as cooking their favourite meal or playing video games together. Positive praise and a few pats on the back will make for good progress in their work.<\/span><\/p>\n

Diet<\/b><\/h2>\n

One of the main issues students face when it comes to exam season is their diet. High levels of stress and anxiety can lead to young one’s binge eating on the wrong foods or disregarding it altogether. A well-balanced diet full of nutrients is what they need to keep their energy levels up and their brain fuelled. Provide them with a healthy breakfast every morning before school and ensure they take a water bottle to keep hydrated throughout the day. There’s absolutely nothing wrong with a takeaway here and there as a treat but try and ensure your child eats regularly and keeps away from caffeine and energy drinks.<\/span><\/p>\n

Sleep<\/b><\/h2>\n

Sleep is crucial for studying. Given that exam period can be a difficult time in a student’s life, it may become a common practice to stay up the night before a test for revision. However, studies have shown that just one less hour of sleep in a night can make an 11-year-old\u2019s brain function like that of a 9-year-olds. Morning exams are well known for starting early so encourage your child to put the books down and settle down for a good night\u2019s rest instead.\u00a0<\/span><\/p>\n

This advice is purely a guide to get you started. If you require more tailored guidance specific to your child, don\u2019t hesitate to contact their teachers.<\/span><\/p>\n","protected":false},"excerpt":{"rendered":"

Whether your child is aged 10 and preparing for SATs or at college and awaiting their GCSE exams, it is important to note that the process of it all can be quite stressful. As a parent, it is imperative that you support your child through this difficult period to help them achieve their full potential. […]<\/p>\n","protected":false},"author":1,"featured_media":145,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[4],"tags":[],"class_list":["post-144","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-exams"],"yoast_head":"\nHow to Support Your Child During Exam Period | Education Way<\/title>\n<meta name=\"description\" content=\"Whatever needs doing, there is always a way. Here is a guide on how to support your child during exam period.\u00a0\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/educationway.co.uk\/how-to-support-your-child-during-exam-period\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Support Your Child During Exam Period | Education Way\" \/>\n<meta property=\"og:description\" content=\"Whatever needs doing, there is always a way. Here is a guide on how to support your child during exam period.\u00a0\" \/>\n<meta property=\"og:url\" content=\"https:\/\/educationway.co.uk\/how-to-support-your-child-during-exam-period\/\" \/>\n<meta property=\"og:site_name\" content=\"Education Way\" \/>\n<meta property=\"article:published_time\" content=\"2023-03-08T21:00:26+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-03-08T21:00:56+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/educationway.co.uk\/wp-content\/uploads\/2023\/03\/01.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1404\" \/>\n\t<meta property=\"og:image:height\" content=\"630\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"admin\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"admin\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/educationway.co.uk\/how-to-support-your-child-during-exam-period\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/educationway.co.uk\/how-to-support-your-child-during-exam-period\/\"},\"author\":{\"name\":\"admin\",\"@id\":\"https:\/\/educationway.co.uk\/#\/schema\/person\/f35a01223144f8b10017ebb3aa40410a\"},\"headline\":\"How to Support Your Child During Exam Period\",\"datePublished\":\"2023-03-08T21:00:26+00:00\",\"dateModified\":\"2023-03-08T21:00:56+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/educationway.co.uk\/how-to-support-your-child-during-exam-period\/\"},\"wordCount\":785,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/educationway.co.uk\/#organization\"},\"image\":{\"@id\":\"https:\/\/educationway.co.uk\/how-to-support-your-child-during-exam-period\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/educationway.co.uk\/wp-content\/uploads\/2023\/03\/01.jpg\",\"articleSection\":[\"Exams\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/educationway.co.uk\/how-to-support-your-child-during-exam-period\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/educationway.co.uk\/how-to-support-your-child-during-exam-period\/\",\"url\":\"https:\/\/educationway.co.uk\/how-to-support-your-child-during-exam-period\/\",\"name\":\"How to Support Your Child During Exam Period | Education Way\",\"isPartOf\":{\"@id\":\"https:\/\/educationway.co.uk\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/educationway.co.uk\/how-to-support-your-child-during-exam-period\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/educationway.co.uk\/how-to-support-your-child-during-exam-period\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/educationway.co.uk\/wp-content\/uploads\/2023\/03\/01.jpg\",\"datePublished\":\"2023-03-08T21:00:26+00:00\",\"dateModified\":\"2023-03-08T21:00:56+00:00\",\"description\":\"Whatever needs doing, there is always a way. Here is a guide on how to support your child during exam period.\u00a0\",\"breadcrumb\":{\"@id\":\"https:\/\/educationway.co.uk\/how-to-support-your-child-during-exam-period\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/educationway.co.uk\/how-to-support-your-child-during-exam-period\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/educationway.co.uk\/how-to-support-your-child-during-exam-period\/#primaryimage\",\"url\":\"https:\/\/educationway.co.uk\/wp-content\/uploads\/2023\/03\/01.jpg\",\"contentUrl\":\"https:\/\/educationway.co.uk\/wp-content\/uploads\/2023\/03\/01.jpg\",\"width\":1404,\"height\":630,\"caption\":\"exam period\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/educationway.co.uk\/how-to-support-your-child-during-exam-period\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/educationway.co.uk\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Support Your Child During Exam Period\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/educationway.co.uk\/#website\",\"url\":\"https:\/\/educationway.co.uk\/\",\"name\":\"Education Way\",\"description\":\"We Can Do It Better!\",\"publisher\":{\"@id\":\"https:\/\/educationway.co.uk\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/educationway.co.uk\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/educationway.co.uk\/#organization\",\"name\":\"Education Way\",\"url\":\"https:\/\/educationway.co.uk\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/educationway.co.uk\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/educationway.co.uk\/wp-content\/uploads\/2023\/11\/cropped-HEALTH-BRO-53.png\",\"contentUrl\":\"https:\/\/educationway.co.uk\/wp-content\/uploads\/2023\/11\/cropped-HEALTH-BRO-53.png\",\"width\":468,\"height\":180,\"caption\":\"Education Way\"},\"image\":{\"@id\":\"https:\/\/educationway.co.uk\/#\/schema\/logo\/image\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\/\/educationway.co.uk\/#\/schema\/person\/f35a01223144f8b10017ebb3aa40410a\",\"name\":\"admin\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/educationway.co.uk\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/e9dd732c8a75fb4fb7e10b4c30ede347?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/e9dd732c8a75fb4fb7e10b4c30ede347?s=96&d=mm&r=g\",\"caption\":\"admin\"},\"sameAs\":[\"http:\/\/educationway.co.uk\"],\"url\":\"https:\/\/educationway.co.uk\/author\/admin\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to Support Your Child During Exam Period | Education Way","description":"Whatever needs doing, there is always a way. Here is a guide on how to support your child during exam period.\u00a0","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:\/\/educationway.co.uk\/how-to-support-your-child-during-exam-period\/","og_locale":"en_US","og_type":"article","og_title":"How to Support Your Child During Exam Period | Education Way","og_description":"Whatever needs doing, there is always a way. Here is a guide on how to support your child during exam period.\u00a0","og_url":"https:\/\/educationway.co.uk\/how-to-support-your-child-during-exam-period\/","og_site_name":"Education Way","article_published_time":"2023-03-08T21:00:26+00:00","article_modified_time":"2023-03-08T21:00:56+00:00","og_image":[{"width":1404,"height":630,"url":"https:\/\/educationway.co.uk\/wp-content\/uploads\/2023\/03\/01.jpg","type":"image\/jpeg"}],"author":"admin","twitter_card":"summary_large_image","twitter_misc":{"Written by":"admin","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/educationway.co.uk\/how-to-support-your-child-during-exam-period\/#article","isPartOf":{"@id":"https:\/\/educationway.co.uk\/how-to-support-your-child-during-exam-period\/"},"author":{"name":"admin","@id":"https:\/\/educationway.co.uk\/#\/schema\/person\/f35a01223144f8b10017ebb3aa40410a"},"headline":"How to Support Your Child During Exam Period","datePublished":"2023-03-08T21:00:26+00:00","dateModified":"2023-03-08T21:00:56+00:00","mainEntityOfPage":{"@id":"https:\/\/educationway.co.uk\/how-to-support-your-child-during-exam-period\/"},"wordCount":785,"commentCount":0,"publisher":{"@id":"https:\/\/educationway.co.uk\/#organization"},"image":{"@id":"https:\/\/educationway.co.uk\/how-to-support-your-child-during-exam-period\/#primaryimage"},"thumbnailUrl":"https:\/\/educationway.co.uk\/wp-content\/uploads\/2023\/03\/01.jpg","articleSection":["Exams"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/educationway.co.uk\/how-to-support-your-child-during-exam-period\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/educationway.co.uk\/how-to-support-your-child-during-exam-period\/","url":"https:\/\/educationway.co.uk\/how-to-support-your-child-during-exam-period\/","name":"How to Support Your Child During Exam Period | Education Way","isPartOf":{"@id":"https:\/\/educationway.co.uk\/#website"},"primaryImageOfPage":{"@id":"https:\/\/educationway.co.uk\/how-to-support-your-child-during-exam-period\/#primaryimage"},"image":{"@id":"https:\/\/educationway.co.uk\/how-to-support-your-child-during-exam-period\/#primaryimage"},"thumbnailUrl":"https:\/\/educationway.co.uk\/wp-content\/uploads\/2023\/03\/01.jpg","datePublished":"2023-03-08T21:00:26+00:00","dateModified":"2023-03-08T21:00:56+00:00","description":"Whatever needs doing, there is always a way. Here is a guide on how to support your child during exam period.\u00a0","breadcrumb":{"@id":"https:\/\/educationway.co.uk\/how-to-support-your-child-during-exam-period\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/educationway.co.uk\/how-to-support-your-child-during-exam-period\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/educationway.co.uk\/how-to-support-your-child-during-exam-period\/#primaryimage","url":"https:\/\/educationway.co.uk\/wp-content\/uploads\/2023\/03\/01.jpg","contentUrl":"https:\/\/educationway.co.uk\/wp-content\/uploads\/2023\/03\/01.jpg","width":1404,"height":630,"caption":"exam period"},{"@type":"BreadcrumbList","@id":"https:\/\/educationway.co.uk\/how-to-support-your-child-during-exam-period\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/educationway.co.uk\/"},{"@type":"ListItem","position":2,"name":"How to Support Your Child During Exam Period"}]},{"@type":"WebSite","@id":"https:\/\/educationway.co.uk\/#website","url":"https:\/\/educationway.co.uk\/","name":"Education Way","description":"We Can Do It Better!","publisher":{"@id":"https:\/\/educationway.co.uk\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/educationway.co.uk\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/educationway.co.uk\/#organization","name":"Education Way","url":"https:\/\/educationway.co.uk\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/educationway.co.uk\/#\/schema\/logo\/image\/","url":"https:\/\/educationway.co.uk\/wp-content\/uploads\/2023\/11\/cropped-HEALTH-BRO-53.png","contentUrl":"https:\/\/educationway.co.uk\/wp-content\/uploads\/2023\/11\/cropped-HEALTH-BRO-53.png","width":468,"height":180,"caption":"Education Way"},"image":{"@id":"https:\/\/educationway.co.uk\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/educationway.co.uk\/#\/schema\/person\/f35a01223144f8b10017ebb3aa40410a","name":"admin","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/educationway.co.uk\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/e9dd732c8a75fb4fb7e10b4c30ede347?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/e9dd732c8a75fb4fb7e10b4c30ede347?s=96&d=mm&r=g","caption":"admin"},"sameAs":["http:\/\/educationway.co.uk"],"url":"https:\/\/educationway.co.uk\/author\/admin\/"}]}},"_links":{"self":[{"href":"https:\/\/educationway.co.uk\/wp-json\/wp\/v2\/posts\/144","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/educationway.co.uk\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/educationway.co.uk\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/educationway.co.uk\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/educationway.co.uk\/wp-json\/wp\/v2\/comments?post=144"}],"version-history":[{"count":1,"href":"https:\/\/educationway.co.uk\/wp-json\/wp\/v2\/posts\/144\/revisions"}],"predecessor-version":[{"id":146,"href":"https:\/\/educationway.co.uk\/wp-json\/wp\/v2\/posts\/144\/revisions\/146"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/educationway.co.uk\/wp-json\/wp\/v2\/media\/145"}],"wp:attachment":[{"href":"https:\/\/educationway.co.uk\/wp-json\/wp\/v2\/media?parent=144"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/educationway.co.uk\/wp-json\/wp\/v2\/categories?post=144"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/educationway.co.uk\/wp-json\/wp\/v2\/tags?post=144"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}