{"id":3076,"date":"2014-01-22T02:34:46","date_gmt":"2014-01-22T07:34:46","guid":{"rendered":"https:\/\/www.inmotionhosting.com\/support\/2014\/01\/22\/dynamic-website-vs-static-website\/"},"modified":"2021-08-16T23:04:23","modified_gmt":"2021-08-17T03:04:23","slug":"dynamic-website-vs-static-website","status":"publish","type":"post","link":"https:\/\/www.inmotionhosting.com\/support\/website\/dynamic-website-vs-static-website\/","title":{"rendered":"Dynamic website vs Static website"},"content":{"rendered":"<p>If you are trying to speed up your website, it&#8217;s important to first know the difference between a <strong>dynamic website<\/strong>, and a <strong>static website<\/strong>. These are the two types of websites that currently exist on the Internet.<\/p>\n<p>A quick break down would be that <strong>dynamic websites<\/strong> require more server resources, but provide more flexibility when it comes to updating them. While <strong>static websites<\/strong> are fast in nature, because they don&#8217;t ask the server to do extra work, other than just handing off already completed files to the visitor.<\/p>\n<p>Each one has its own advantages and disadvantages, and in this guide I&#8217;ll discuss why you might want to use one over the other in your specific case.<\/p>\n<h2>Dynamic websites<\/h2>\n<p>Probably the most frequently used type of website today would be a dynamic website. In order to be dynamic, the website runs a server-side scripting language to dynamically create the page being requested by each visitor.<\/p>\n<p>Pretty much any CMS (Content Management System) that you run on a server, such as <a href=\"\/support\/edu\/wordpress\/\" target=\"_blank\" rel=\"noopener\">WordPress<\/a>, <a href=\"\/support\/edu\/joomla\/joomla-3\/joomla-351-released\/\" target=\"_blank\" rel=\"noopener\">Joomla<\/a>, or <a href=\"\/support\/edu\/drupal\/drupal-8-release\/\" target=\"_blank\" rel=\"noopener\">Drupal<\/a> and many others, will create a dynamic website.<\/p>\n<p>This type of software uses scripts to connect to databases that pull in info to piece together a complete website. This gives the user a front-end to easily adjust some of the dynamic variables of the site.<\/p>\n<p>In its simplest form this example below would be considered a dynamic website. This is because the <strong>config.php<\/strong> file sets up variables to use, and the <strong>index.php<\/strong> script then includes these variables to create the actual page.<\/p>\n<p><strong>config.php<\/strong><\/p>\n<pre class=\"code_block\" style=\"width: 500px;\">&lt;?php  <strong style=\"color: red;\">$title<\/strong> = \"My dynamic website\"; <strong style=\"color: red;\">$body<\/strong> = \"This is an example dynamic website\";  ?&gt;<\/pre>\n<p style=\"margin-top: 15px;\"><strong>index.php<\/strong><\/p>\n<pre class=\"code_block\" style=\"width: 500px;\">&lt;?php include('<strong style=\"color: red;\">config.php<\/strong>'); ?&gt;  &lt;html&gt; &lt;head&gt; &lt;title&gt;<strong style=\"color: red;\">&lt;? echo $title;?&gt;<\/strong>&lt;\/title&gt; &lt;\/head&gt;  &lt;body&gt;  <strong style=\"color: red;\">&lt;? echo $body;?&gt;<\/strong>  &lt;\/body&gt; &lt;\/html&gt;<\/pre>\n<p style=\"margin-top: 15px;\">Now every time a visitor comes to the <strong>index.php<\/strong> script, the server has to fire up a <strong>PHP<\/strong> process to run the script.<\/p>\n<p>That <strong>PHP<\/strong> process also includes the <strong>config.php<\/strong> script, and so when it gets down to the line where it prints out the <strong style=\"color: red;\">$title<\/strong> variable, instead of printing out that actual word, it prints <strong style=\"color: red;\">My dynamic website<\/strong>.<\/p>\n<p>The same thing happens with the <strong style=\"color: red;\">$body<\/strong> variable printing out <strong style=\"color: red;\">This is an example dynamic website<\/strong>.<\/p>\n<p>Now lets say that you have 50 different <strong>PHP<\/strong> scripts, and you wanted each title to start with the same text. This is where having a dynamic website can come in handy because now you could do this:<\/p>\n<p><strong>page1.php<\/strong><\/p>\n<p><strong>My dynamic website &#8211; Page 1<\/strong><\/p>\n<pre class=\"code_block\" style=\"width: 500px;\">&lt;title&gt;<strong style=\"color: red;\">&lt;? echo $title;?&gt; - Page 1<\/strong>&lt;\/title&gt;<\/pre>\n<p style=\"margin-top: 15px;\"><strong>page2.php<\/strong><\/p>\n<p><strong>My dynamic website &#8211; Page 2<\/strong><\/p>\n<pre class=\"code_block\" style=\"width: 500px;\">&lt;title&gt;<strong style=\"color: red;\">&lt;? echo $title;?&gt; - Page 2<\/strong>&lt;\/title&gt;<\/pre>\n<p style=\"margin-top: 15px;\"><strong>page3.php<\/strong><\/p>\n<p><strong>My dynamic website &#8211; Page 3<\/strong><\/p>\n<pre class=\"code_block\" style=\"width: 500px;\">&lt;title&gt;<strong style=\"color: red;\">&lt;? echo $title;?&gt; - Page 3<\/strong>&lt;\/title&gt;<\/pre>\n<p style=\"margin-top: 15px;\">Now if you all the sudden wanted to change the title across your 50 different <strong>PHP<\/strong> scripts, all you&#8217;d need to do is go back and just edit the <strong>config.php<\/strong> file and change the <strong style=\"color: red;\">$title<\/strong> variable to use the new text.<\/p>\n<p>Because each of your <strong>PHP<\/strong> pages is generated dynamically, the server will first check the <strong>config.php<\/strong> script every single time one of the pages is requested to see what the title should be.<\/p>\n<p>You might be thinking at this point that this sounds great, why don&#8217;t I just always make my website dynamic?<\/p>\n<h2>Static websites save on resources<\/h2>\n<p>While there are seemingly a lot of benefits to having a dynamic website, it can also cause your website to load slowly if you&#8217;re trying to dynamically load up too much at once.<\/p>\n<p>Also if you have one particular page getting requested again and again, and nothing is changing on the page itself, all that dynamic creation of that page over and over can lead to <a href=\"\/support\/server\/server-usage\/how-can-i-view-my-accounts-resource-usage\/\" target=\"_blank\" rel=\"noopener\">resource usage problems<\/a> on the server.<\/p>\n<p>Let&#8217;s say for instance my <strong>page1.php<\/strong> page from the dynamic website examples above is getting requested 1,000 times an hour because it got really popular all of the sudden.<\/p>\n<p>Each time that page is requested, a <strong>PHP<\/strong> script has to dynamically fill in the variables for <strong style=\"color: red;\">$title<\/strong> and <strong style=\"color: red;\">$body<\/strong>, and if the average CPU time, or time that the server has to run that script for, is equal to <strong>0.2 CPU seconds<\/strong> then that means that for 1,000 requests it would take about <strong>200 CPU seconds<\/strong> of computing time to handle all the requests.<\/p>\n<p>If that page keeps getting hit steadily with that level of traffic, it kinda seems like a waste of computing power to just keep creating the same page again and again. This is where a static website can easily take the advantage over a dynamic website.<\/p>\n<p>With a static website, you simply have the raw <strong>HTML<\/strong> that creates your page in a file. A visitor&#8217;s web-browser will just directly request that page, and all the server has to due is hand it off as is.<\/p>\n<h2>Dynamic vs Static website<\/h2>\n<p>Depending on your needs, either a <strong>dynamic website<\/strong> or a <strong>static website<\/strong> could do just fine. The best of both worlds would be accomplished by using a cache or caching plugin for your dynamic site, so that frequently accessed dynamic pages can be automatically turned into static pages.<\/p>\n<p>A great example of this flexibility would be <a href=\"\/support\/edu\/wordpress\/use-wordpress-cache-to-speed-up-your-site\/\" target=\"_blank\" rel=\"noopener\">using a WordPress cache plugin<\/a>. These can easily turn your WordPress dynamic website, into a site that still handles dynamic requests, but at the same time saves on resources by still serving up static pages when dynamic ones aren&#8217;t needed.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>If you are trying to speed up your website, it&#8217;s important to first know the difference between a dynamic website, and a static website. These are the two types of websites that currently exist on the Internet. A quick break down would be that dynamic websites require more server resources, but provide more flexibility when<a class=\"moretag\" href=\"https:\/\/www.inmotionhosting.com\/support\/website\/dynamic-website-vs-static-website\/\"> Read More ><\/a><\/p>\n","protected":false},"author":57014,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[4288],"tags":[],"class_list":["post-3076","post","type-post","status-publish","format-standard","hentry","category-website"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.1.1 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Dynamic website vs Static website | InMotion Hosting<\/title>\n<meta name=\"description\" content=\"To speed up your website, you should know what a dynamic website, and a static website are. Dynamic sites add ease of use, while static sites decrease usage.\" \/>\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.inmotionhosting.com\/support\/website\/dynamic-website-vs-static-website\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Dynamic website vs Static website | InMotion Hosting\" \/>\n<meta property=\"og:description\" content=\"To speed up your website, you should know what a dynamic website, and a static website are. Dynamic sites add ease of use, while static sites decrease usage.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.inmotionhosting.com\/support\/website\/dynamic-website-vs-static-website\/\" \/>\n<meta property=\"og:site_name\" content=\"InMotion Hosting Support Center\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/inmotionhosting\/\" \/>\n<meta property=\"article:published_time\" content=\"2014-01-22T07:34:46+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2021-08-17T03:04:23+00:00\" \/>\n<meta name=\"author\" content=\"InMotion Hosting Contributor\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@https:\/\/twitter.com\/InMotionHosting\" \/>\n<meta name=\"twitter:site\" content=\"@InMotionHosting\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"InMotion Hosting Contributor\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"5 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/website\/dynamic-website-vs-static-website\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/website\/dynamic-website-vs-static-website\/\"},\"author\":{\"name\":\"InMotion Hosting Contributor\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/person\/f9a4fc454cd1df128ee8e898d30d4644\"},\"headline\":\"Dynamic website vs Static website\",\"datePublished\":\"2014-01-22T07:34:46+00:00\",\"dateModified\":\"2021-08-17T03:04:23+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/website\/dynamic-website-vs-static-website\/\"},\"wordCount\":858,\"commentCount\":8,\"publisher\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#organization\"},\"articleSection\":[\"Website\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.inmotionhosting.com\/support\/website\/dynamic-website-vs-static-website\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/website\/dynamic-website-vs-static-website\/\",\"url\":\"https:\/\/www.inmotionhosting.com\/support\/website\/dynamic-website-vs-static-website\/\",\"name\":\"Dynamic website vs Static website | InMotion Hosting\",\"isPartOf\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#website\"},\"datePublished\":\"2014-01-22T07:34:46+00:00\",\"dateModified\":\"2021-08-17T03:04:23+00:00\",\"description\":\"To speed up your website, you should know what a dynamic website, and a static website are. Dynamic sites add ease of use, while static sites decrease usage.\",\"breadcrumb\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/website\/dynamic-website-vs-static-website\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.inmotionhosting.com\/support\/website\/dynamic-website-vs-static-website\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/website\/dynamic-website-vs-static-website\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.inmotionhosting.com\/support\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Dynamic website vs Static website\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#website\",\"url\":\"https:\/\/www.inmotionhosting.com\/support\/\",\"name\":\"InMotion Hosting Support Center\",\"description\":\"Web Hosting Support &amp; Tutorials\",\"publisher\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.inmotionhosting.com\/support\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#organization\",\"name\":\"InMotion Hosting\",\"url\":\"https:\/\/www.inmotionhosting.com\/support\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2023\/02\/inmotion-hosting-logo-yoast.jpg\",\"contentUrl\":\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2023\/02\/inmotion-hosting-logo-yoast.jpg\",\"width\":696,\"height\":696,\"caption\":\"InMotion Hosting\"},\"image\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/inmotionhosting\/\",\"https:\/\/x.com\/InMotionHosting\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/person\/f9a4fc454cd1df128ee8e898d30d4644\",\"name\":\"InMotion Hosting Contributor\",\"description\":\"InMotion Hosting contributors are highly knowledgeable individuals who create relevant content on new trends and troubleshooting techniques to help you achieve your online goals!\",\"sameAs\":[\"https:\/\/www.linkedin.com\/company\/inmotion-hosting\/\",\"https:\/\/x.com\/https:\/\/twitter.com\/InMotionHosting\"],\"url\":\"https:\/\/www.inmotionhosting.com\/support\/author\/inmotion-hosting-contributor\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Dynamic website vs Static website | InMotion Hosting","description":"To speed up your website, you should know what a dynamic website, and a static website are. Dynamic sites add ease of use, while static sites decrease usage.","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.inmotionhosting.com\/support\/website\/dynamic-website-vs-static-website\/","og_locale":"en_US","og_type":"article","og_title":"Dynamic website vs Static website | InMotion Hosting","og_description":"To speed up your website, you should know what a dynamic website, and a static website are. Dynamic sites add ease of use, while static sites decrease usage.","og_url":"https:\/\/www.inmotionhosting.com\/support\/website\/dynamic-website-vs-static-website\/","og_site_name":"InMotion Hosting Support Center","article_publisher":"https:\/\/www.facebook.com\/inmotionhosting\/","article_published_time":"2014-01-22T07:34:46+00:00","article_modified_time":"2021-08-17T03:04:23+00:00","author":"InMotion Hosting Contributor","twitter_card":"summary_large_image","twitter_creator":"@https:\/\/twitter.com\/InMotionHosting","twitter_site":"@InMotionHosting","twitter_misc":{"Written by":"InMotion Hosting Contributor","Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.inmotionhosting.com\/support\/website\/dynamic-website-vs-static-website\/#article","isPartOf":{"@id":"https:\/\/www.inmotionhosting.com\/support\/website\/dynamic-website-vs-static-website\/"},"author":{"name":"InMotion Hosting Contributor","@id":"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/person\/f9a4fc454cd1df128ee8e898d30d4644"},"headline":"Dynamic website vs Static website","datePublished":"2014-01-22T07:34:46+00:00","dateModified":"2021-08-17T03:04:23+00:00","mainEntityOfPage":{"@id":"https:\/\/www.inmotionhosting.com\/support\/website\/dynamic-website-vs-static-website\/"},"wordCount":858,"commentCount":8,"publisher":{"@id":"https:\/\/www.inmotionhosting.com\/support\/#organization"},"articleSection":["Website"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.inmotionhosting.com\/support\/website\/dynamic-website-vs-static-website\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.inmotionhosting.com\/support\/website\/dynamic-website-vs-static-website\/","url":"https:\/\/www.inmotionhosting.com\/support\/website\/dynamic-website-vs-static-website\/","name":"Dynamic website vs Static website | InMotion Hosting","isPartOf":{"@id":"https:\/\/www.inmotionhosting.com\/support\/#website"},"datePublished":"2014-01-22T07:34:46+00:00","dateModified":"2021-08-17T03:04:23+00:00","description":"To speed up your website, you should know what a dynamic website, and a static website are. Dynamic sites add ease of use, while static sites decrease usage.","breadcrumb":{"@id":"https:\/\/www.inmotionhosting.com\/support\/website\/dynamic-website-vs-static-website\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.inmotionhosting.com\/support\/website\/dynamic-website-vs-static-website\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.inmotionhosting.com\/support\/website\/dynamic-website-vs-static-website\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.inmotionhosting.com\/support\/"},{"@type":"ListItem","position":2,"name":"Dynamic website vs Static website"}]},{"@type":"WebSite","@id":"https:\/\/www.inmotionhosting.com\/support\/#website","url":"https:\/\/www.inmotionhosting.com\/support\/","name":"InMotion Hosting Support Center","description":"Web Hosting Support &amp; Tutorials","publisher":{"@id":"https:\/\/www.inmotionhosting.com\/support\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.inmotionhosting.com\/support\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.inmotionhosting.com\/support\/#organization","name":"InMotion Hosting","url":"https:\/\/www.inmotionhosting.com\/support\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/logo\/image\/","url":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2023\/02\/inmotion-hosting-logo-yoast.jpg","contentUrl":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2023\/02\/inmotion-hosting-logo-yoast.jpg","width":696,"height":696,"caption":"InMotion Hosting"},"image":{"@id":"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/inmotionhosting\/","https:\/\/x.com\/InMotionHosting"]},{"@type":"Person","@id":"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/person\/f9a4fc454cd1df128ee8e898d30d4644","name":"InMotion Hosting Contributor","description":"InMotion Hosting contributors are highly knowledgeable individuals who create relevant content on new trends and troubleshooting techniques to help you achieve your online goals!","sameAs":["https:\/\/www.linkedin.com\/company\/inmotion-hosting\/","https:\/\/x.com\/https:\/\/twitter.com\/InMotionHosting"],"url":"https:\/\/www.inmotionhosting.com\/support\/author\/inmotion-hosting-contributor\/"}]}},"jetpack_featured_media_url":"","jetpack_sharing_enabled":true,"primary_category":null,"_links":{"self":[{"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/posts\/3076","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/users\/57014"}],"replies":[{"embeddable":true,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/comments?post=3076"}],"version-history":[{"count":2,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/posts\/3076\/revisions"}],"predecessor-version":[{"id":84344,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/posts\/3076\/revisions\/84344"}],"wp:attachment":[{"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/media?parent=3076"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/categories?post=3076"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/tags?post=3076"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}