{"id":22356,"date":"2014-11-14T18:01:14","date_gmt":"2014-11-14T10:01:14","guid":{"rendered":"https:\/\/www.hongkiat.com\/blog\/?p=22356"},"modified":"2025-04-04T02:01:36","modified_gmt":"2025-04-03T18:01:36","slug":"meta-tag-hidden-features","status":"publish","type":"post","link":"https:\/\/www.hongkiat.com\/blog\/meta-tag-hidden-features\/","title":{"rendered":"5 Things You Can Do With HTML Meta Tag"},"content":{"rendered":"<p>Meta Tag is used to <strong>store a piece of information on a web page<\/strong>. Essentially, it is information about data. Its purpose is for browsers and search engines to understand and know the page better.<\/p>\n<p>As web developers, we\u2019re used to setting the page description, author, or keyword via meta tag. However, there are a number of meta tag capabilities that most of us probably aren\u2019t aware of. Here I\u2019ve put together <strong>5 meta tag features that you may have not heard of before<\/strong>.<\/p>\n<p class=\"note\"><strong>Recommended Reading:<\/strong> <a href=\"https:\/\/www.hongkiat.com\/blog\/itunes-meta-tag\/\">Promote Your iOS App With iTunes App Meta Tag<\/a><\/p>\n<h2>1. Controlling Browser Cache<\/h2>\n<p>When you visit a web page, it stores the web page in cache to make it load faster in subsequent visits. You may have come across an instance where <strong>your page is not updated with the changes that you\u2019ve made<\/strong>. This is because the browser shows you the cached page. To prevents this, you can disable browser cache by using meta tag. To disable browser cache, you can use:<\/p>\n<pre>\r\n&lt;meta http-equiv=\"Cache-Control\" content=\"no-store\" \/&gt;\r\n<\/pre>\n<p>This meta tag is recognized in Firefox, Chrome, and Internet Explorer. Even more so in IE, where you can use more values and specifications to disable caching, as follows.<\/p>\n<pre>\r\n&lt;meta http-equiv=\"Cache-Control\" content=\"no-cache\" \/&gt;\r\n&lt;meta http-equiv=\"Pragma\" content=\"no-cache\" \/&gt;\r\n<\/pre>\n<p>You can also set an expiration date to ensure that the browser will show the file that\u2019s fresh from the server, rather than from the <em>cache<\/em>.<\/p>\n<pre>\r\n&lt;meta http-equiv=\"expires\" content=\"Fri, 18 Jul 2014 1:00:00 GMT\" \/&gt;\r\n<\/pre>\n<p>The meta data above means that document is considered expired after the specified date and time. If you set it to \u201c<code>0<\/code>\u201c, the browser will check for a fresh new document on each visit.<\/p>\n<h2>2. Setting Cookies<\/h2>\n<p>Similar to <em>cache<\/em>, <strong>cookies<\/strong> is <strong>a small piece of data that is stored in the browser by the websites you\u2019ve visited<\/strong>. Websites may reuse the <em>cookies<\/em> to tailor some website functionalities. A real everyday example is when you shop in an online store. If you\u2019ve added a few items to the basket, as long as you have not yet checked out, the items will remain in the basket even though you have left the browser for several days.<\/p>\n<p>To set cookies on meta-tag you can use:<\/p>\n<pre>\r\n&lt;meta http-equiv=\"Set-Cookie\" content=\"name=data; path=path; expires=Day, DD-MMM-YY HH:MM:SS ZONE\"&gt;\r\n<\/pre>\n<p><code>name=data<\/code> is the name of the cookies which determines the values set in it. <code>path<\/code> is the path of document. Whereas, the value of <code>expired<\/code> indicates the time and date when cookies are deleted from your computer. If you leave the expired date empty, the <em>cookies<\/em> will be deleted once you quit the browser.<\/p>\n<p>As an example, if we want the cookies to expire on 31 January, 2015 we can set:<\/p>\n<pre>\r\n&lt;meta http-equiv=\"Set-Cookie\" content=\"name=data; path=path; expires=Thursday, 01-Jan-2015 00:00:00 GMT\"&gt;\r\n<\/pre>\n<h2>3. Refreshing Web Pages<\/h2>\n<p>You can set a page to refresh after a certain period. <strong>meta http-equiv=\"refresh\"<\/strong> specifies a delay in seconds for the browser to refresh the page automatically. This <code>meta-tag<\/code> specification below will make the browser  reload the page every 5 seconds.<\/p>\n<pre>\r\n&lt;meta http-equiv=\"refresh\" content=\"5\"&gt;\r\n<\/pre>\n<p>Below, you can see that the page is automatically refreshed by the browser.<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/assets.hongkiat.com\/uploads\/meta-tag-hidden-features\/meta-tag-refresh.gif\" alt=\"meta tag refresh\" width=\"500\" height=\"320\"><\/p>\n<h2>4. Redirecting<\/h2>\n<p>We can also use the <code>refresh<\/code> meta tag to redirect a page to a specific destination. This following example will lead us to example.com after we view the page for 5 seconds.<\/p>\n<pre>\r\n&lt;meta http-equiv=\"refresh\" content=\"5; url=http:\/\/example.com\/\"&gt;\r\n<\/pre>\n<p>You can see it live below.<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/assets.hongkiat.com\/uploads\/meta-tag-hidden-features\/meta-tag-redirect.gif\" alt=\"meta tag redirect\" width=\"500\" height=\"320\"><\/p>\n<p>To redirect the page immediately, set it to <code>0<\/code>, as follows:<\/p>\n<pre>\r\n&lt;meta http-equiv=\"refresh\" content=\"0; url=http:\/\/example.com\/\"&gt;\r\n<\/pre>\n<h2>5. Page Transition<\/h2>\n<p>You can also apply transitions to your web pages with <code>meta-tag<\/code> in a way that is similar to PowerPoint. The syntax of page transition with meta tag looks like below:<\/p>\n<pre>\r\n&lt;meta http-equiv=\"page-enter\" content=\"revealtrans(duration=seconds,transition=num)\" \/&gt;\r\n<\/pre>\n<pre>\r\n&lt;meta http-equiv=\"page-exit\" content=\"revealtrans(duration=seconds,transition=num)\" \/&gt;\r\n<\/pre>\n<pre>\r\n&lt;meta http-equiv=\"page-enter\" content=\"blendTrans(duration=sec)\" \/&gt;\r\n<\/pre>\n<p>Note that this only works on ancient Internet Explorer since <code>page-enter<\/code> and <code>page-exit<\/code> are Microsoft\u2019s proprietary meta tag specifications. You can specify how long the transition will run for using <code>duration<\/code>. The <code>Transition<\/code> should be filled by a number\/integer between 0 \u2013 23 that refers to the transition type provided by Microsoft. Whereas, &lt;meta http-equiv=\"page-enter\" content=\"blendTrans(duration=sec)\" \/&gt; is another value that comes without a transition type.<\/p>","protected":false},"excerpt":{"rendered":"<p>Meta Tag is used to store a piece of information on a web page. Essentially, it is information about data. Its purpose is for browsers and search engines to understand and know the page better. As web developers, we\u2019re used to setting the page description, author, or keyword via meta tag. However, there are a&hellip;<\/p>\n","protected":false},"author":141,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[3392,352],"tags":[506],"topic":[4520],"class_list":["entry-content","is-maxi"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v22.8 (Yoast SEO v27.5) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>5 Things You Can Do With HTML Meta Tag - Hongkiat<\/title>\n<meta name=\"description\" content=\"Meta Tag is used to store a piece of information on a web page. Essentially, it is information about data. Its purpose is for browsers and search engines\" \/>\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\/meta-tag-hidden-features\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"5 Things You Can Do With HTML Meta Tag\" \/>\n<meta property=\"og:description\" content=\"Meta Tag is used to store a piece of information on a web page. Essentially, it is information about data. Its purpose is for browsers and search engines\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.hongkiat.com\/blog\/meta-tag-hidden-features\/\" \/>\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=\"2014-11-14T10:01:14+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-04-03T18:01:36+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/assets.hongkiat.com\/uploads\/meta-tag-hidden-features\/meta-tag-refresh.gif\" \/>\n<meta name=\"author\" content=\"Agus\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@bagusdesain\" \/>\n<meta name=\"twitter:site\" content=\"@hongkiat\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Agus\" \/>\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:\\\/\\\/www.hongkiat.com\\\/blog\\\/meta-tag-hidden-features\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/meta-tag-hidden-features\\\/\"},\"author\":{\"name\":\"Agus\",\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/#\\\/schema\\\/person\\\/b23dad06815dff0bcc222088bed549dd\"},\"headline\":\"5 Things You Can Do With HTML Meta Tag\",\"datePublished\":\"2014-11-14T10:01:14+00:00\",\"dateModified\":\"2025-04-03T18:01:36+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/meta-tag-hidden-features\\\/\"},\"wordCount\":622,\"commentCount\":11,\"publisher\":{\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/meta-tag-hidden-features\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/assets.hongkiat.com\\\/uploads\\\/meta-tag-hidden-features\\\/meta-tag-refresh.gif\",\"keywords\":[\"HTML\"],\"articleSection\":[\"Coding\",\"Web Design\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/meta-tag-hidden-features\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/meta-tag-hidden-features\\\/\",\"url\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/meta-tag-hidden-features\\\/\",\"name\":\"5 Things You Can Do With HTML Meta Tag - Hongkiat\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/meta-tag-hidden-features\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/meta-tag-hidden-features\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/assets.hongkiat.com\\\/uploads\\\/meta-tag-hidden-features\\\/meta-tag-refresh.gif\",\"datePublished\":\"2014-11-14T10:01:14+00:00\",\"dateModified\":\"2025-04-03T18:01:36+00:00\",\"description\":\"Meta Tag is used to store a piece of information on a web page. Essentially, it is information about data. Its purpose is for browsers and search engines\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/meta-tag-hidden-features\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/meta-tag-hidden-features\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/meta-tag-hidden-features\\\/#primaryimage\",\"url\":\"https:\\\/\\\/assets.hongkiat.com\\\/uploads\\\/meta-tag-hidden-features\\\/meta-tag-refresh.gif\",\"contentUrl\":\"https:\\\/\\\/assets.hongkiat.com\\\/uploads\\\/meta-tag-hidden-features\\\/meta-tag-refresh.gif\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/meta-tag-hidden-features\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"5 Things You Can Do With HTML Meta Tag\"}]},{\"@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\\\/b23dad06815dff0bcc222088bed549dd\",\"name\":\"Agus\",\"description\":\"Agus is a music enthusiast, backpacker and code writer. He has an ambition to build a Skynet on top of HTML and CSS.\",\"sameAs\":[\"https:\\\/\\\/x.com\\\/bagusdesain\"],\"url\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/author\\\/agus\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"5 Things You Can Do With HTML Meta Tag - Hongkiat","description":"Meta Tag is used to store a piece of information on a web page. Essentially, it is information about data. Its purpose is for browsers and search engines","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\/meta-tag-hidden-features\/","og_locale":"en_US","og_type":"article","og_title":"5 Things You Can Do With HTML Meta Tag","og_description":"Meta Tag is used to store a piece of information on a web page. Essentially, it is information about data. Its purpose is for browsers and search engines","og_url":"https:\/\/www.hongkiat.com\/blog\/meta-tag-hidden-features\/","og_site_name":"Hongkiat","article_publisher":"https:\/\/www.facebook.com\/hongkiatcom","article_published_time":"2014-11-14T10:01:14+00:00","article_modified_time":"2025-04-03T18:01:36+00:00","og_image":[{"url":"https:\/\/assets.hongkiat.com\/uploads\/meta-tag-hidden-features\/meta-tag-refresh.gif","type":"","width":"","height":""}],"author":"Agus","twitter_card":"summary_large_image","twitter_creator":"@bagusdesain","twitter_site":"@hongkiat","twitter_misc":{"Written by":"Agus","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.hongkiat.com\/blog\/meta-tag-hidden-features\/#article","isPartOf":{"@id":"https:\/\/www.hongkiat.com\/blog\/meta-tag-hidden-features\/"},"author":{"name":"Agus","@id":"https:\/\/www.hongkiat.com\/blog\/#\/schema\/person\/b23dad06815dff0bcc222088bed549dd"},"headline":"5 Things You Can Do With HTML Meta Tag","datePublished":"2014-11-14T10:01:14+00:00","dateModified":"2025-04-03T18:01:36+00:00","mainEntityOfPage":{"@id":"https:\/\/www.hongkiat.com\/blog\/meta-tag-hidden-features\/"},"wordCount":622,"commentCount":11,"publisher":{"@id":"https:\/\/www.hongkiat.com\/blog\/#organization"},"image":{"@id":"https:\/\/www.hongkiat.com\/blog\/meta-tag-hidden-features\/#primaryimage"},"thumbnailUrl":"https:\/\/assets.hongkiat.com\/uploads\/meta-tag-hidden-features\/meta-tag-refresh.gif","keywords":["HTML"],"articleSection":["Coding","Web Design"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.hongkiat.com\/blog\/meta-tag-hidden-features\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.hongkiat.com\/blog\/meta-tag-hidden-features\/","url":"https:\/\/www.hongkiat.com\/blog\/meta-tag-hidden-features\/","name":"5 Things You Can Do With HTML Meta Tag - Hongkiat","isPartOf":{"@id":"https:\/\/www.hongkiat.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.hongkiat.com\/blog\/meta-tag-hidden-features\/#primaryimage"},"image":{"@id":"https:\/\/www.hongkiat.com\/blog\/meta-tag-hidden-features\/#primaryimage"},"thumbnailUrl":"https:\/\/assets.hongkiat.com\/uploads\/meta-tag-hidden-features\/meta-tag-refresh.gif","datePublished":"2014-11-14T10:01:14+00:00","dateModified":"2025-04-03T18:01:36+00:00","description":"Meta Tag is used to store a piece of information on a web page. Essentially, it is information about data. Its purpose is for browsers and search engines","breadcrumb":{"@id":"https:\/\/www.hongkiat.com\/blog\/meta-tag-hidden-features\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.hongkiat.com\/blog\/meta-tag-hidden-features\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.hongkiat.com\/blog\/meta-tag-hidden-features\/#primaryimage","url":"https:\/\/assets.hongkiat.com\/uploads\/meta-tag-hidden-features\/meta-tag-refresh.gif","contentUrl":"https:\/\/assets.hongkiat.com\/uploads\/meta-tag-hidden-features\/meta-tag-refresh.gif"},{"@type":"BreadcrumbList","@id":"https:\/\/www.hongkiat.com\/blog\/meta-tag-hidden-features\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.hongkiat.com\/blog\/"},{"@type":"ListItem","position":2,"name":"5 Things You Can Do With HTML Meta Tag"}]},{"@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\/b23dad06815dff0bcc222088bed549dd","name":"Agus","description":"Agus is a music enthusiast, backpacker and code writer. He has an ambition to build a Skynet on top of HTML and CSS.","sameAs":["https:\/\/x.com\/bagusdesain"],"url":"https:\/\/www.hongkiat.com\/blog\/author\/agus\/"}]}},"jetpack_featured_media_url":"https:\/\/","jetpack_shortlink":"https:\/\/wp.me\/p4uxU-5OA","jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/www.hongkiat.com\/blog\/wp-json\/wp\/v2\/posts\/22356","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\/141"}],"replies":[{"embeddable":true,"href":"https:\/\/www.hongkiat.com\/blog\/wp-json\/wp\/v2\/comments?post=22356"}],"version-history":[{"count":3,"href":"https:\/\/www.hongkiat.com\/blog\/wp-json\/wp\/v2\/posts\/22356\/revisions"}],"predecessor-version":[{"id":73718,"href":"https:\/\/www.hongkiat.com\/blog\/wp-json\/wp\/v2\/posts\/22356\/revisions\/73718"}],"wp:attachment":[{"href":"https:\/\/www.hongkiat.com\/blog\/wp-json\/wp\/v2\/media?parent=22356"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.hongkiat.com\/blog\/wp-json\/wp\/v2\/categories?post=22356"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.hongkiat.com\/blog\/wp-json\/wp\/v2\/tags?post=22356"},{"taxonomy":"topic","embeddable":true,"href":"https:\/\/www.hongkiat.com\/blog\/wp-json\/wp\/v2\/topic?post=22356"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}