{"id":73352,"date":"2025-03-18T18:00:42","date_gmt":"2025-03-18T10:00:42","guid":{"rendered":"https:\/\/www.hongkiat.com\/blog\/?p=73352"},"modified":"2025-03-11T18:32:18","modified_gmt":"2025-03-11T10:32:18","slug":"wordpress-maintenance-mode-guide","status":"publish","type":"post","link":"https:\/\/www.hongkiat.com\/blog\/wordpress-maintenance-mode-guide\/","title":{"rendered":"How to Put Your WordPress Site in Maintenance Mode"},"content":{"rendered":"<p>There are times when you need to temporarily take your WordPress site offline, whether for updates, troubleshooting, or redesigns. Instead of displaying a broken or unfinished site, maintenance mode allows you to show visitors a professional message while you work behind the scenes.<\/p>\n<p>Unlike a regular page, a maintenance page uses the <a rel=\"nofollow noopener\" target=\"_blank\" href=\"https:\/\/developer.mozilla.org\/en-US\/docs\/Web\/HTTP\/Status\/503\">503 standard HTTP status code<\/a>, which tells search engines the downtime is temporary and prevents SEO penalties.<\/p>\n<p>In this article, we\u2019ll walk you through a couple of different ways to implement this maintenance page. Let\u2019s check it out.<\/p>\n<h2>Use Built-in Maintenance File<\/h2>\n<p>WordPress has a built-in maintenance mode that activates when you update your site. It creates a <code>.maintenance<\/code> file in the root directory of your site. This file contains the message you want to show visitors and the time the maintenance mode was activated. Likewise, you could create a <code>.maintenance<\/code> file manually to put your site in maintenance mode.<\/p>\n<p>You can create the file, <code>.maintenance<\/code>, at the root of your WordPress site installation where the <code>wp-config.php<\/code> file resides, as you can see below:<\/p>\n<figure><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/assets.hongkiat.com\/uploads\/wordpress-maintenance-mode-guide\/dot-maintenance-file.jpg\" alt=\"Screenshot showing .maintenance file location in WordPress root directory\" width=\"1000\" height=\"640\"><\/figure>\n<p>Then put this code below within the file:<\/p>\n<pre>\r\n&lt;?php $upgrading = time(); ?&gt;\r\n<\/pre>\n<p>This will immediately activate WordPress maintenance mode. If you call the built-in <code>wp_is_maintenance_mode<\/code> function, it should return <code>true<\/code>, confirming that maintenance mode is active. When you reload the page, WordPress will display the default maintenance message.<\/p>\n<figure><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/assets.hongkiat.com\/uploads\/wordpress-maintenance-mode-guide\/page-maintenance-message.jpg\" alt=\"WordPress default maintenance mode message screenshot\" width=\"1000\" height=\"212\"><\/figure>\n<h3>Customizing the Maintenance Page<\/h3>\n<p>The default maintenance message is simple and plain.<\/p>\n<p>You can customize it by creating a custom maintenance page named <strong>maintenance.php<\/strong> within the <code>wp-content<\/code> directory. You can add a custom message and styles to the page to make it more appealing to visitors or make it fit better with your overall site design.<\/p>\n<p>Here is an example code you can put within the file:<\/p>\n<pre>\r\n&lt;!doctype html&gt;\n&lt;html&gt;\n&lt;head&gt;\n    &lt;meta charset=\"utf-8\"&gt;\n    &lt;title&gt;Maintenance&lt;\/title&gt;\n    &lt;link rel=\"stylesheet\" href=\"https:\/\/cdnjs.cloudflare.com\/ajax\/libs\/normalize\/8.0.1\/normalize.min.css\"&gt;\n    &lt;style&gt;\n    #container {\n        display: flex;\n        width: 100vw;\n        height: 100vh;\n        padding-inline: 20vw;\n        box-sizing: border-box;\n        text-align: center;\n        justify-content: center;\n        align-items: center;\n        flex-flow: column wrap;\n    }\n    &lt;\/style&gt;\n&lt;\/head&gt;\n&lt;body&gt;\n    &lt;div id=\"container\"&gt;\n        &lt;h1&gt;Maintenance&lt;\/h1&gt;\n        &lt;p&gt;Our website is currently undergoing scheduled maintenance. We should be back shortly. Thank you for your patience.&lt;\/p&gt;\n    &lt;\/div&gt;\n&lt;\/body&gt;\n&lt;\/html&gt;    \r\n<\/pre>\n<p>Now, when you reload your site, you should see the entire page rendered with the updated content and styles from this <code>maintenance.php<\/code> file.<\/p>\n<figure><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/assets.hongkiat.com\/uploads\/wordpress-maintenance-mode-guide\/page-maintenance-message.jpg\" alt=\"Custom WordPress maintenance page example\" width=\"1000\" height=\"212\"><\/figure>\n<p>The problem with this file is that you cannot use WordPress functions such as <code>wp_head<\/code>, <code>wp_title<\/code>, <code>wp_footer<\/code>, <code>esc_html_e<\/code>, etc. This means that you cannot display the site title, enqueue assets like stylesheets and JavaScript files, or any other dynamic content rendered using WordPress functions within this file.<\/p>\n<p>That\u2019s why, as you can see above, we\u2019ve only added static content and linked stylesheets statically as well.<\/p>\n<p>This leads to additional problems, such as the inability to translate content on the maintenance page. And since stylesheets can\u2019t be dynamically enqueued, the maintenance page design may feel out of place if you change your theme.<\/p>\n<h2>Use a Plugin<\/h2>\n<p>The easiest way to enable maintenance mode on your WordPress site is by using a plugin. There are several options available, but in this article, we\u2019ll use <a rel=\"nofollow noopener\" target=\"_blank\" href=\"https:\/\/wordpress.org\/plugins\/syntatis-feature-flipper\/\">Feature Flipper<\/a>. This plugin includes various utilities, one of which allows you to activate maintenance mode easily.<\/p>\n<p>After installing and activating the plugin, navigate to <strong>Settings > Features > Site<\/strong> and enable the <strong>\u201cMaintenance\u201d<\/strong> option. As we can see below, you can also customize the maintenance page content to match your needs.<\/p>\n<figure><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/assets.hongkiat.com\/uploads\/wordpress-maintenance-mode-guide\/maintenance-setting.jpg\" alt=\"Feature Flipper plugin maintenance mode settings interface\" width=\"1000\" height=\"600\"><\/figure>\n<p>The maintenance page automatically inherits styles from your active theme to ensure that the page seamlessly matches your theme\u2019s styles. If you change your theme, the maintenance page will adapt to the new styles accordingly.<\/p>\n<p>Here\u2019s how it looks with some of the popular themes from the WordPress.org repository:<\/p>\n<h3><a rel=\"nofollow noopener\" target=\"_blank\" href=\"https:\/\/wordpress.org\/themes\/twentytwentyfive\/\">TwentyTwentyFive<\/a><\/h3>\n<figure><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/assets.hongkiat.com\/uploads\/wordpress-maintenance-mode-guide\/theme-2025.jpg\" alt=\"Maintenance mode page using Twenty Twenty-Five theme\" width=\"1000\" height=\"600\"><\/figure>\n<h3><a rel=\"nofollow noopener\" target=\"_blank\" href=\"https:\/\/wordpress.org\/themes\/twentytwentyfour\/\">TwentyTwentyFour<\/a><\/h3>\n<figure><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/assets.hongkiat.com\/uploads\/wordpress-maintenance-mode-guide\/theme-2024.jpg\" alt=\"Maintenance mode page using Twenty Twenty-Four theme\" width=\"1000\" height=\"600\"><\/figure>\n<h3><a rel=\"nofollow noopener\" target=\"_blank\" href=\"https:\/\/wordpress.org\/themes\/twentytwentyone\/\">TwentyTwentyOne<\/a><\/h3>\n<figure><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/assets.hongkiat.com\/uploads\/wordpress-maintenance-mode-guide\/theme-2021.jpg\" alt=\"Maintenance mode page using Twenty Twenty-One theme\" width=\"1000\" height=\"600\"><\/figure>\n<h2>Wrapping Up<\/h2>\n<p>In this article, we explored two ways to enable maintenance mode on your WordPress site. The built-in method is quick and easy but lacks customization. Meanwhile, a plugin offers more flexibility and makes it easy to toggle maintenance mode on and off directly from the dashboard.<\/p>\n<p>No matter which method you choose, don\u2019t forget to disable maintenance mode once you\u2019re done so your site remains accessible!<\/p>","protected":false},"excerpt":{"rendered":"<p>There are times when you need to temporarily take your WordPress site offline, whether for updates, troubleshooting, or redesigns. Instead of displaying a broken or unfinished site, maintenance mode allows you to show visitors a professional message while you work behind the scenes. Unlike a regular page, a maintenance page uses the 503 standard HTTP&hellip;<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[49],"tags":[],"topic":[],"class_list":["entry-content","is-maxi"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v22.8 (Yoast SEO v27.4) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>How to Put Your WordPress Site in Maintenance Mode - Hongkiat<\/title>\n<meta name=\"description\" content=\"There are times when you need to temporarily take your WordPress site offline, whether for updates, troubleshooting, or redesigns. Instead of displaying a\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.hongkiat.com\/blog\/wordpress-maintenance-mode-guide\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Put Your WordPress Site in Maintenance Mode\" \/>\n<meta property=\"og:description\" content=\"There are times when you need to temporarily take your WordPress site offline, whether for updates, troubleshooting, or redesigns. Instead of displaying a\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.hongkiat.com\/blog\/wordpress-maintenance-mode-guide\/\" \/>\n<meta property=\"og:site_name\" content=\"Hongkiat\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/hongkiatcom\" \/>\n<meta property=\"article:published_time\" content=\"2025-03-18T10:00:42+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/assets.hongkiat.com\/uploads\/wordpress-maintenance-mode-guide\/dot-maintenance-file.jpg\" \/>\n<meta name=\"author\" content=\"Hongkiat Lim\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@hongkiat\" \/>\n<meta name=\"twitter:site\" content=\"@hongkiat\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Hongkiat Lim\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/wordpress-maintenance-mode-guide\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/wordpress-maintenance-mode-guide\\\/\"},\"author\":{\"name\":\"Hongkiat Lim\",\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/#\\\/schema\\\/person\\\/e3613a3bf757e4f67770f0b7a339edd0\"},\"headline\":\"How to Put Your WordPress Site in Maintenance Mode\",\"datePublished\":\"2025-03-18T10:00:42+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/wordpress-maintenance-mode-guide\\\/\"},\"wordCount\":610,\"publisher\":{\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/wordpress-maintenance-mode-guide\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/assets.hongkiat.com\\\/uploads\\\/wordpress-maintenance-mode-guide\\\/dot-maintenance-file.jpg\",\"articleSection\":[\"WordPress\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/wordpress-maintenance-mode-guide\\\/\",\"url\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/wordpress-maintenance-mode-guide\\\/\",\"name\":\"How to Put Your WordPress Site in Maintenance Mode - Hongkiat\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/wordpress-maintenance-mode-guide\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/wordpress-maintenance-mode-guide\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/assets.hongkiat.com\\\/uploads\\\/wordpress-maintenance-mode-guide\\\/dot-maintenance-file.jpg\",\"datePublished\":\"2025-03-18T10:00:42+00:00\",\"description\":\"There are times when you need to temporarily take your WordPress site offline, whether for updates, troubleshooting, or redesigns. Instead of displaying a\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/wordpress-maintenance-mode-guide\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/wordpress-maintenance-mode-guide\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/wordpress-maintenance-mode-guide\\\/#primaryimage\",\"url\":\"https:\\\/\\\/assets.hongkiat.com\\\/uploads\\\/wordpress-maintenance-mode-guide\\\/dot-maintenance-file.jpg\",\"contentUrl\":\"https:\\\/\\\/assets.hongkiat.com\\\/uploads\\\/wordpress-maintenance-mode-guide\\\/dot-maintenance-file.jpg\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/wordpress-maintenance-mode-guide\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Put Your WordPress Site in Maintenance Mode\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/\",\"name\":\"Hongkiat\",\"description\":\"Tech and Design Tips\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/#organization\",\"name\":\"Hongkiat.com\",\"url\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/wp-content\\\/uploads\\\/hkdc-logo-rect-yoast.jpg\",\"contentUrl\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/wp-content\\\/uploads\\\/hkdc-logo-rect-yoast.jpg\",\"width\":1200,\"height\":799,\"caption\":\"Hongkiat.com\"},\"image\":{\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/hongkiatcom\",\"https:\\\/\\\/x.com\\\/hongkiat\",\"https:\\\/\\\/www.pinterest.com\\\/hongkiat\\\/\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/#\\\/schema\\\/person\\\/e3613a3bf757e4f67770f0b7a339edd0\",\"name\":\"Hongkiat Lim\",\"description\":\"Founder and Editor in Chief of Hongkiat.com. Hongkiat is also a designer, developer, entrepreneur, and an active investor in the US stock market.\",\"sameAs\":[\"http:\\\/\\\/www.hongkiat.com\\\/blog\"],\"url\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/author\\\/hongkiat\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"How to Put Your WordPress Site in Maintenance Mode - Hongkiat","description":"There are times when you need to temporarily take your WordPress site offline, whether for updates, troubleshooting, or redesigns. Instead of displaying a","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:\/\/www.hongkiat.com\/blog\/wordpress-maintenance-mode-guide\/","og_locale":"en_US","og_type":"article","og_title":"How to Put Your WordPress Site in Maintenance Mode","og_description":"There are times when you need to temporarily take your WordPress site offline, whether for updates, troubleshooting, or redesigns. Instead of displaying a","og_url":"https:\/\/www.hongkiat.com\/blog\/wordpress-maintenance-mode-guide\/","og_site_name":"Hongkiat","article_publisher":"https:\/\/www.facebook.com\/hongkiatcom","article_published_time":"2025-03-18T10:00:42+00:00","og_image":[{"url":"https:\/\/assets.hongkiat.com\/uploads\/wordpress-maintenance-mode-guide\/dot-maintenance-file.jpg","type":"","width":"","height":""}],"author":"Hongkiat Lim","twitter_card":"summary_large_image","twitter_creator":"@hongkiat","twitter_site":"@hongkiat","twitter_misc":{"Written by":"Hongkiat Lim"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.hongkiat.com\/blog\/wordpress-maintenance-mode-guide\/#article","isPartOf":{"@id":"https:\/\/www.hongkiat.com\/blog\/wordpress-maintenance-mode-guide\/"},"author":{"name":"Hongkiat Lim","@id":"https:\/\/www.hongkiat.com\/blog\/#\/schema\/person\/e3613a3bf757e4f67770f0b7a339edd0"},"headline":"How to Put Your WordPress Site in Maintenance Mode","datePublished":"2025-03-18T10:00:42+00:00","mainEntityOfPage":{"@id":"https:\/\/www.hongkiat.com\/blog\/wordpress-maintenance-mode-guide\/"},"wordCount":610,"publisher":{"@id":"https:\/\/www.hongkiat.com\/blog\/#organization"},"image":{"@id":"https:\/\/www.hongkiat.com\/blog\/wordpress-maintenance-mode-guide\/#primaryimage"},"thumbnailUrl":"https:\/\/assets.hongkiat.com\/uploads\/wordpress-maintenance-mode-guide\/dot-maintenance-file.jpg","articleSection":["WordPress"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/www.hongkiat.com\/blog\/wordpress-maintenance-mode-guide\/","url":"https:\/\/www.hongkiat.com\/blog\/wordpress-maintenance-mode-guide\/","name":"How to Put Your WordPress Site in Maintenance Mode - Hongkiat","isPartOf":{"@id":"https:\/\/www.hongkiat.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.hongkiat.com\/blog\/wordpress-maintenance-mode-guide\/#primaryimage"},"image":{"@id":"https:\/\/www.hongkiat.com\/blog\/wordpress-maintenance-mode-guide\/#primaryimage"},"thumbnailUrl":"https:\/\/assets.hongkiat.com\/uploads\/wordpress-maintenance-mode-guide\/dot-maintenance-file.jpg","datePublished":"2025-03-18T10:00:42+00:00","description":"There are times when you need to temporarily take your WordPress site offline, whether for updates, troubleshooting, or redesigns. Instead of displaying a","breadcrumb":{"@id":"https:\/\/www.hongkiat.com\/blog\/wordpress-maintenance-mode-guide\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.hongkiat.com\/blog\/wordpress-maintenance-mode-guide\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.hongkiat.com\/blog\/wordpress-maintenance-mode-guide\/#primaryimage","url":"https:\/\/assets.hongkiat.com\/uploads\/wordpress-maintenance-mode-guide\/dot-maintenance-file.jpg","contentUrl":"https:\/\/assets.hongkiat.com\/uploads\/wordpress-maintenance-mode-guide\/dot-maintenance-file.jpg"},{"@type":"BreadcrumbList","@id":"https:\/\/www.hongkiat.com\/blog\/wordpress-maintenance-mode-guide\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.hongkiat.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to Put Your WordPress Site in Maintenance Mode"}]},{"@type":"WebSite","@id":"https:\/\/www.hongkiat.com\/blog\/#website","url":"https:\/\/www.hongkiat.com\/blog\/","name":"Hongkiat","description":"Tech and Design Tips","publisher":{"@id":"https:\/\/www.hongkiat.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.hongkiat.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.hongkiat.com\/blog\/#organization","name":"Hongkiat.com","url":"https:\/\/www.hongkiat.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.hongkiat.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/www.hongkiat.com\/blog\/wp-content\/uploads\/hkdc-logo-rect-yoast.jpg","contentUrl":"https:\/\/www.hongkiat.com\/blog\/wp-content\/uploads\/hkdc-logo-rect-yoast.jpg","width":1200,"height":799,"caption":"Hongkiat.com"},"image":{"@id":"https:\/\/www.hongkiat.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/hongkiatcom","https:\/\/x.com\/hongkiat","https:\/\/www.pinterest.com\/hongkiat\/"]},{"@type":"Person","@id":"https:\/\/www.hongkiat.com\/blog\/#\/schema\/person\/e3613a3bf757e4f67770f0b7a339edd0","name":"Hongkiat Lim","description":"Founder and Editor in Chief of Hongkiat.com. Hongkiat is also a designer, developer, entrepreneur, and an active investor in the US stock market.","sameAs":["http:\/\/www.hongkiat.com\/blog"],"url":"https:\/\/www.hongkiat.com\/blog\/author\/hongkiat\/"}]}},"jetpack_featured_media_url":"https:\/\/","jetpack_shortlink":"https:\/\/wp.me\/p4uxU-j56","jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/www.hongkiat.com\/blog\/wp-json\/wp\/v2\/posts\/73352","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.hongkiat.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.hongkiat.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.hongkiat.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.hongkiat.com\/blog\/wp-json\/wp\/v2\/comments?post=73352"}],"version-history":[{"count":1,"href":"https:\/\/www.hongkiat.com\/blog\/wp-json\/wp\/v2\/posts\/73352\/revisions"}],"predecessor-version":[{"id":73353,"href":"https:\/\/www.hongkiat.com\/blog\/wp-json\/wp\/v2\/posts\/73352\/revisions\/73353"}],"wp:attachment":[{"href":"https:\/\/www.hongkiat.com\/blog\/wp-json\/wp\/v2\/media?parent=73352"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.hongkiat.com\/blog\/wp-json\/wp\/v2\/categories?post=73352"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.hongkiat.com\/blog\/wp-json\/wp\/v2\/tags?post=73352"},{"taxonomy":"topic","embeddable":true,"href":"https:\/\/www.hongkiat.com\/blog\/wp-json\/wp\/v2\/topic?post=73352"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}