{"id":1695,"date":"2024-02-01T16:34:40","date_gmt":"2024-02-01T15:34:40","guid":{"rendered":"https:\/\/codeflarelimited.com\/blog\/?p=1695"},"modified":"2024-02-01T16:34:42","modified_gmt":"2024-02-01T15:34:42","slug":"greet-your-website-visitors-based-on-the-time-of-the-day","status":"publish","type":"post","link":"https:\/\/codeflarelimited.com\/blog\/greet-your-website-visitors-based-on-the-time-of-the-day\/","title":{"rendered":"Greet your Website Visitors based On the time of the Day"},"content":{"rendered":"\n<p>JavaScript allows us to dynamically change greetings based on the current hour of the day, providing a personalized touch to web applications. In this article, we&#8217;ll walk through a step-by-step guide on creating a simple JavaScript function that changes greetings according to morning, afternoon, and evening.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Step 1: Set Up HTML Structure<\/h2>\n\n\n\n<p>Begin by creating a basic HTML structure with a placeholder for the greeting text:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"markup\" class=\"language-markup\">&lt;!DOCTYPE html&gt;\n&lt;html lang=\"en\"&gt;\n&lt;head&gt;\n    &lt;meta charset=\"UTF-8\"&gt;\n    &lt;meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\"&gt;\n    &lt;title&gt;Dynamic Greetings&lt;\/title&gt;\n&lt;\/head&gt;\n&lt;body&gt;\n    &lt;div id=\"greeting-container\"&gt;\n        &lt;p id=\"greeting-text\"&gt;Good Morning!&lt;\/p&gt;\n    &lt;\/div&gt;\n    &lt;script src=\"script.js\"&gt;&lt;\/script&gt;\n&lt;\/body&gt;\n&lt;\/html&gt;\n<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Step 2: Write JavaScript Logic<\/h2>\n\n\n\n<p>Now, create a JavaScript file (script.js) and add the logic to change greetings based on the current hour:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"javascript\" class=\"language-javascript\">document.addEventListener('DOMContentLoaded', function () {\n    const greetingText = document.getElementById('greeting-text');\n\n    function getCurrentGreeting() {\n        const currentHour = new Date().getHours();\n\n        if (currentHour &gt;= 5 &amp;&amp; currentHour &lt; 12) {\n            return 'Good Morning!';\n        } else if (currentHour &gt;= 12 &amp;&amp; currentHour &lt; 18) {\n            return 'Good Afternoon!';\n        } else {\n            return 'Good Evening!';\n        }\n    }\n\n    function updateGreeting() {\n        const greeting = getCurrentGreeting();\n        greetingText.textContent = greeting;\n    }\n\n    \/\/ Update greeting initially\n    updateGreeting();\n\n    \/\/ Update greeting every minute\n    setInterval(updateGreeting, 60000);\n});\n<\/code><\/pre>\n\n\n\n<p>This JavaScript code defines a function <code><strong>getCurrentGreeting()<\/strong><\/code> that determines the current time and returns the appropriate greeting. The <code><strong>updateGreeting()<\/strong><\/code> function then updates the displayed greeting text on the webpage.<\/p>\n\n\n\n<p>The <code><strong>setInterval<\/strong><\/code> method ensures that the greeting is updated every minute to reflect real-time changes.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Step 3: Style Your Greeting<\/h2>\n\n\n\n<p>Style your greeting to make it visually appealing. You can add some CSS to center the text and make it visually attractive:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"css\" class=\"language-css\">body {\n    display: flex;\n    align-items: center;\n    justify-content: center;\n    height: 100vh;\n    margin: 0;\n    background-color: #f0f0f0;\n}\n\n#greeting-container {\n    text-align: center;\n}\n\n#greeting-text {\n    font-size: 24px;\n    font-weight: bold;\n    color: #333;\n}\n<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Step 4: Test Your Application<\/h2>\n\n\n\n<p>Open your HTML file in a web browser and observe the greeting text change dynamically based on the current hour. The application will greet the user with &#8220;Good Morning&#8221; in the morning, &#8220;Good Afternoon&#8221; in the afternoon, and &#8220;Good Evening&#8221; in the evening.<\/p>\n\n\n\n<p>Certainly! Here&#8217;s the complete HTML file that integrates the HTML structure, JavaScript logic, and CSS styling:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"markup\" class=\"language-markup\">&lt;!DOCTYPE html&gt;\r\n&lt;html lang=\"en\"&gt;\r\n&lt;head&gt;\r\n    &lt;meta charset=\"UTF-8\"&gt;\r\n    &lt;meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\"&gt;\r\n    &lt;title&gt;Dynamic Greetings&lt;\/title&gt;\r\n    &lt;style&gt;\r\n        body {\r\n            display: flex;\r\n            align-items: center;\r\n            justify-content: center;\r\n            height: 100vh;\r\n            margin: 0;\r\n            background-color: #f0f0f0;\r\n        }\r\n\r\n        #greeting-container {\r\n            text-align: center;\r\n        }\r\n\r\n        #greeting-text {\r\n            font-size: 24px;\r\n            font-weight: bold;\r\n            color: #333;\r\n        }\r\n    &lt;\/style&gt;\r\n&lt;\/head&gt;\r\n&lt;body&gt;\r\n    &lt;div id=\"greeting-container\"&gt;\r\n        &lt;p id=\"greeting-text\"&gt;Good Morning!&lt;\/p&gt;\r\n    &lt;\/div&gt;\r\n    &lt;script&gt;\r\n        document.addEventListener('DOMContentLoaded', function () {\r\n            const greetingText = document.getElementById('greeting-text');\r\n\r\n            function getCurrentGreeting() {\r\n                const currentHour = new Date().getHours();\r\n\r\n                if (currentHour &gt;= 5 &amp;&amp; currentHour &lt; 12) {\r\n                    return 'Good Morning!';\r\n                } else if (currentHour &gt;= 12 &amp;&amp; currentHour &lt; 18) {\r\n                    return 'Good Afternoon!';\r\n                } else {\r\n                    return 'Good Evening!';\r\n                }\r\n            }\r\n\r\n            function updateGreeting() {\r\n                const greeting = getCurrentGreeting();\r\n                greetingText.textContent = greeting;\r\n            }\r\n\r\n            \/\/ Update greeting initially\r\n            updateGreeting();\r\n\r\n            \/\/ Update greeting every minute\r\n            setInterval(updateGreeting, 60000);\r\n        });\r\n    &lt;\/script&gt;\r\n&lt;\/body&gt;\r\n&lt;\/html&gt;\r\n<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Conclusion<\/h2>\n\n\n\n<p>Creating a JavaScript current hour change for greetings adds a personal and dynamic touch to your web applications. This simple script enhances user experience by adapting the displayed content to the time of day. Feel free to customize the greetings and styling to suit your application&#8217;s theme and requirements.<\/p>\n\n\n\n<p><a href=\"https:\/\/codeflarelimited.com\/blog\/css-flexbox-a-comprehensive-guide\/\">CSS Flex-Box<\/a><\/p>\n","protected":false},"excerpt":{"rendered":"<p>JavaScript allows us to dynamically change greetings based on the current hour of the day, providing a personalized<\/p>\n","protected":false},"author":3,"featured_media":1698,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[98],"tags":[8],"class_list":["post-1695","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-softare-development","tag-programming"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Greet your Website Visitors based On the time of the Day Greet<\/title>\n<meta name=\"description\" content=\"Learn how to create dynamic visitor greetings that change based on the time of day. Engage and captivate your website visitors with....\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/codeflarelimited.com\/blog\/greet-your-website-visitors-based-on-the-time-of-the-day\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Greet your Website Visitors based On the time of the Day Greet\" \/>\n<meta property=\"og:description\" content=\"Learn how to create dynamic visitor greetings that change based on the time of day. Engage and captivate your website visitors with....\" \/>\n<meta property=\"og:url\" content=\"https:\/\/codeflarelimited.com\/blog\/greet-your-website-visitors-based-on-the-time-of-the-day\/\" \/>\n<meta property=\"article:published_time\" content=\"2024-02-01T15:34:40+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-02-01T15:34:42+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/codeflarelimited.com\/blog\/wp-content\/uploads\/2024\/02\/time-based-min.png\" \/>\n\t<meta property=\"og:image:width\" content=\"2240\" \/>\n\t<meta property=\"og:image:height\" content=\"1260\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Kene Samuel\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"TechArticle\",\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/greet-your-website-visitors-based-on-the-time-of-the-day\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/greet-your-website-visitors-based-on-the-time-of-the-day\\\/\"},\"author\":{\"name\":\"Kene Samuel\",\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/#\\\/schema\\\/person\\\/c501609bab46c16807eb32106074f206\"},\"headline\":\"Greet your Website Visitors based On the time of the Day\",\"datePublished\":\"2024-02-01T15:34:40+00:00\",\"dateModified\":\"2024-02-01T15:34:42+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/greet-your-website-visitors-based-on-the-time-of-the-day\\\/\"},\"wordCount\":281,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/greet-your-website-visitors-based-on-the-time-of-the-day\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/wp-content\\\/uploads\\\/2024\\\/02\\\/time-based-min.png\",\"keywords\":[\"programming\"],\"articleSection\":[\"softare development\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/greet-your-website-visitors-based-on-the-time-of-the-day\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/greet-your-website-visitors-based-on-the-time-of-the-day\\\/\",\"url\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/greet-your-website-visitors-based-on-the-time-of-the-day\\\/\",\"name\":\"Greet your Website Visitors based On the time of the Day Greet\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/greet-your-website-visitors-based-on-the-time-of-the-day\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/greet-your-website-visitors-based-on-the-time-of-the-day\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/wp-content\\\/uploads\\\/2024\\\/02\\\/time-based-min.png\",\"datePublished\":\"2024-02-01T15:34:40+00:00\",\"dateModified\":\"2024-02-01T15:34:42+00:00\",\"description\":\"Learn how to create dynamic visitor greetings that change based on the time of day. Engage and captivate your website visitors with....\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/greet-your-website-visitors-based-on-the-time-of-the-day\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/greet-your-website-visitors-based-on-the-time-of-the-day\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/greet-your-website-visitors-based-on-the-time-of-the-day\\\/#primaryimage\",\"url\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/wp-content\\\/uploads\\\/2024\\\/02\\\/time-based-min.png\",\"contentUrl\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/wp-content\\\/uploads\\\/2024\\\/02\\\/time-based-min.png\",\"width\":2240,\"height\":1260},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/greet-your-website-visitors-based-on-the-time-of-the-day\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"softare development\",\"item\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/softare-development\\\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Greet your Website Visitors based On the time of the Day\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/\",\"name\":\"\",\"description\":\"Sustainable solutions\",\"publisher\":{\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/#organization\",\"name\":\"Codeflare Limited\",\"url\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/11\\\/codeflare.png\",\"contentUrl\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/11\\\/codeflare.png\",\"width\":1040,\"height\":263,\"caption\":\"Codeflare Limited\"},\"image\":{\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/#\\\/schema\\\/person\\\/c501609bab46c16807eb32106074f206\",\"name\":\"Kene Samuel\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/3e1716cd715a5b5491e1f2da373b52f2f73aeb37d268baff34719116e386d848?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/3e1716cd715a5b5491e1f2da373b52f2f73aeb37d268baff34719116e386d848?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/3e1716cd715a5b5491e1f2da373b52f2f73aeb37d268baff34719116e386d848?s=96&d=mm&r=g\",\"caption\":\"Kene Samuel\"},\"url\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/author\\\/kene\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Greet your Website Visitors based On the time of the Day Greet","description":"Learn how to create dynamic visitor greetings that change based on the time of day. Engage and captivate your website visitors with....","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:\/\/codeflarelimited.com\/blog\/greet-your-website-visitors-based-on-the-time-of-the-day\/","og_locale":"en_US","og_type":"article","og_title":"Greet your Website Visitors based On the time of the Day Greet","og_description":"Learn how to create dynamic visitor greetings that change based on the time of day. Engage and captivate your website visitors with....","og_url":"https:\/\/codeflarelimited.com\/blog\/greet-your-website-visitors-based-on-the-time-of-the-day\/","article_published_time":"2024-02-01T15:34:40+00:00","article_modified_time":"2024-02-01T15:34:42+00:00","og_image":[{"width":2240,"height":1260,"url":"https:\/\/codeflarelimited.com\/blog\/wp-content\/uploads\/2024\/02\/time-based-min.png","type":"image\/png"}],"author":"Kene Samuel","twitter_card":"summary_large_image","schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"TechArticle","@id":"https:\/\/codeflarelimited.com\/blog\/greet-your-website-visitors-based-on-the-time-of-the-day\/#article","isPartOf":{"@id":"https:\/\/codeflarelimited.com\/blog\/greet-your-website-visitors-based-on-the-time-of-the-day\/"},"author":{"name":"Kene Samuel","@id":"https:\/\/codeflarelimited.com\/blog\/#\/schema\/person\/c501609bab46c16807eb32106074f206"},"headline":"Greet your Website Visitors based On the time of the Day","datePublished":"2024-02-01T15:34:40+00:00","dateModified":"2024-02-01T15:34:42+00:00","mainEntityOfPage":{"@id":"https:\/\/codeflarelimited.com\/blog\/greet-your-website-visitors-based-on-the-time-of-the-day\/"},"wordCount":281,"commentCount":0,"publisher":{"@id":"https:\/\/codeflarelimited.com\/blog\/#organization"},"image":{"@id":"https:\/\/codeflarelimited.com\/blog\/greet-your-website-visitors-based-on-the-time-of-the-day\/#primaryimage"},"thumbnailUrl":"https:\/\/codeflarelimited.com\/blog\/wp-content\/uploads\/2024\/02\/time-based-min.png","keywords":["programming"],"articleSection":["softare development"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/codeflarelimited.com\/blog\/greet-your-website-visitors-based-on-the-time-of-the-day\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/codeflarelimited.com\/blog\/greet-your-website-visitors-based-on-the-time-of-the-day\/","url":"https:\/\/codeflarelimited.com\/blog\/greet-your-website-visitors-based-on-the-time-of-the-day\/","name":"Greet your Website Visitors based On the time of the Day Greet","isPartOf":{"@id":"https:\/\/codeflarelimited.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/codeflarelimited.com\/blog\/greet-your-website-visitors-based-on-the-time-of-the-day\/#primaryimage"},"image":{"@id":"https:\/\/codeflarelimited.com\/blog\/greet-your-website-visitors-based-on-the-time-of-the-day\/#primaryimage"},"thumbnailUrl":"https:\/\/codeflarelimited.com\/blog\/wp-content\/uploads\/2024\/02\/time-based-min.png","datePublished":"2024-02-01T15:34:40+00:00","dateModified":"2024-02-01T15:34:42+00:00","description":"Learn how to create dynamic visitor greetings that change based on the time of day. Engage and captivate your website visitors with....","breadcrumb":{"@id":"https:\/\/codeflarelimited.com\/blog\/greet-your-website-visitors-based-on-the-time-of-the-day\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/codeflarelimited.com\/blog\/greet-your-website-visitors-based-on-the-time-of-the-day\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/codeflarelimited.com\/blog\/greet-your-website-visitors-based-on-the-time-of-the-day\/#primaryimage","url":"https:\/\/codeflarelimited.com\/blog\/wp-content\/uploads\/2024\/02\/time-based-min.png","contentUrl":"https:\/\/codeflarelimited.com\/blog\/wp-content\/uploads\/2024\/02\/time-based-min.png","width":2240,"height":1260},{"@type":"BreadcrumbList","@id":"https:\/\/codeflarelimited.com\/blog\/greet-your-website-visitors-based-on-the-time-of-the-day\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/codeflarelimited.com\/blog\/"},{"@type":"ListItem","position":2,"name":"softare development","item":"https:\/\/codeflarelimited.com\/blog\/softare-development\/"},{"@type":"ListItem","position":3,"name":"Greet your Website Visitors based On the time of the Day"}]},{"@type":"WebSite","@id":"https:\/\/codeflarelimited.com\/blog\/#website","url":"https:\/\/codeflarelimited.com\/blog\/","name":"","description":"Sustainable solutions","publisher":{"@id":"https:\/\/codeflarelimited.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/codeflarelimited.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/codeflarelimited.com\/blog\/#organization","name":"Codeflare Limited","url":"https:\/\/codeflarelimited.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/codeflarelimited.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/codeflarelimited.com\/blog\/wp-content\/uploads\/2020\/11\/codeflare.png","contentUrl":"https:\/\/codeflarelimited.com\/blog\/wp-content\/uploads\/2020\/11\/codeflare.png","width":1040,"height":263,"caption":"Codeflare Limited"},"image":{"@id":"https:\/\/codeflarelimited.com\/blog\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/codeflarelimited.com\/blog\/#\/schema\/person\/c501609bab46c16807eb32106074f206","name":"Kene Samuel","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/3e1716cd715a5b5491e1f2da373b52f2f73aeb37d268baff34719116e386d848?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/3e1716cd715a5b5491e1f2da373b52f2f73aeb37d268baff34719116e386d848?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/3e1716cd715a5b5491e1f2da373b52f2f73aeb37d268baff34719116e386d848?s=96&d=mm&r=g","caption":"Kene Samuel"},"url":"https:\/\/codeflarelimited.com\/blog\/author\/kene\/"}]}},"jetpack_featured_media_url":"https:\/\/codeflarelimited.com\/blog\/wp-content\/uploads\/2024\/02\/time-based-min.png","jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/codeflarelimited.com\/blog\/wp-json\/wp\/v2\/posts\/1695","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/codeflarelimited.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/codeflarelimited.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/codeflarelimited.com\/blog\/wp-json\/wp\/v2\/users\/3"}],"replies":[{"embeddable":true,"href":"https:\/\/codeflarelimited.com\/blog\/wp-json\/wp\/v2\/comments?post=1695"}],"version-history":[{"count":3,"href":"https:\/\/codeflarelimited.com\/blog\/wp-json\/wp\/v2\/posts\/1695\/revisions"}],"predecessor-version":[{"id":1699,"href":"https:\/\/codeflarelimited.com\/blog\/wp-json\/wp\/v2\/posts\/1695\/revisions\/1699"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/codeflarelimited.com\/blog\/wp-json\/wp\/v2\/media\/1698"}],"wp:attachment":[{"href":"https:\/\/codeflarelimited.com\/blog\/wp-json\/wp\/v2\/media?parent=1695"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/codeflarelimited.com\/blog\/wp-json\/wp\/v2\/categories?post=1695"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/codeflarelimited.com\/blog\/wp-json\/wp\/v2\/tags?post=1695"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}