{"id":3316,"date":"2017-03-15T09:08:08","date_gmt":"2017-03-15T09:08:08","guid":{"rendered":"https:\/\/www.milesweb.com\/hosting-faqs\/?p=3316"},"modified":"2026-03-09T18:53:16","modified_gmt":"2026-03-09T13:23:16","slug":"installing-wordpress-part-1","status":"publish","type":"post","link":"https:\/\/www.milesweb.in\/hosting-faqs\/installing-wordpress-part-1\/","title":{"rendered":"What to do after installing WordPress CMS? &#8211; Part 1"},"content":{"rendered":"<p>The steps to install WordPress are pretty simple and no one can disagree with that. But with a little more time <em>(and with the knowledge you will acquire here in this article)<\/em> you can achieve a significant improvement in the safety and quality of your installation. Many new users in WordPress have some difficulty knowing what to do after installing the latest version of WordPress. Throughout several articles, we will provide you a step-by-step guide so you know what to do concretely right after installing the latest version of <a href=\"https:\/\/wordpress.org\" target=\"_blank\" rel=\"nofollow noopener\"><strong>WordPress<\/strong><\/a>.<\/p>\n<p>These changes will also make your website perform better and help you to generate positive results in several aspects. Let&#8217;s see below how.<\/p>\n<h4>Change the structure of the permanent links<\/h4>\n<p><strong>By default the installation of WordPress the structure of Permanent Links come as:<\/strong><\/p>\n<pre class=\"lang:default decode:true\">http:\/\/example.com\/?p=123<\/pre>\n<p>But this configuration does not benefit your site, neither for the navigation of your visitors nor even for the robots of search engines. To change this default URL structure go to Settings&gt; Permanent Links. In this screen select the &#8220;Custom Structure&#8221; option and enter the code below:<\/p>\n<pre class=\"lang:default decode:true\">\/%category%\/%postname%\/<\/pre>\n<p>For this pattern to work properly follow the guidelines on how to properly organize Categories and Tags in WordPress.<\/p>\n<h4>Remove unnecessary meta-data from your WordPress website<\/h4>\n<p>The WordPress source code loads numerous meta tags that in most cases are not essential to the proper functioning of the site.<\/p>\n<p>An example of this is the version information of your WordPress installation that is displayed as below:<\/p>\n<pre class=\"lang:default decode:true\">&lt;meta name=\"generator\" content=\"WordPress 4.7.3\" \/&gt;<\/pre>\n<p>In addition to being a good security change as well, individuals interested in achieving security holes in your site will know your version of the platform they should concentrate on.<\/p>\n<p>To completely remove information from your current version and other non-essential metadata from your WordPress, add this code below to the functions.php file found in your template folder.<\/p>\n<pre class=\"lang:default decode:true\">remove_action ('wp_head', 'wp_generator');\nremove_action ('wp_head', 'wlwmanifest_link');\nremove_action ('wp_head', 'rsd_link');<\/pre>\n<h4>Remove some functions tags<\/h4>\n<p>These functions, which are called in the Template Tags Codex, are widely used in templates, allowing you to display the information you insert in various places of the WordPress administrative area, including the name of your website and description.<\/p>\n<p>But all these functions make requests to the database, and in this case, the less information has to be loaded, the better the final result is.<\/p>\n<p><strong>Here are some of these functions that can be removed:<\/strong><\/p>\n<ul>\n<li>Get_header<\/li>\n<li>Get_sidebar<\/li>\n<li>Get_footer<\/li>\n<li>Bloginfo<\/li>\n<\/ul>\n<p>The first step is to search the header.php file of your templates. At first, we will see many lines similar to these:<\/p>\n<p><em>See in the example below many calls to the &lt;? Php <\/em>bloginfo<em> (&#8221;)?&gt; Function:<\/em><\/p>\n<pre class=\"lang:default decode:true\">&lt;link rel=\"shortcut icon\" href=\"&lt;?php bloginfo('template_url'); ?&gt;\/favicon.jpg\" type=\"image\/x-icon\" \/&gt;\n&lt;meta http-equiv=\"content-type\" content=\"&lt;?php bloginfo('html_type') ?&gt;; charset=&lt;?php bloginfo('charset'); ?&gt;\" \/&gt;\n&lt;link rel=\"stylesheet\" type=\"text\/css\" media=\"screen\" href=\"&lt;?php bloginfo('stylesheet_url'); ?&gt;\" \/&gt;\n&lt;link rel=\"alternate\" type=\"application\/rss+xml\" href=\"&lt;?php bloginfo('rss2_url'); ?&gt;\" \/&gt;\n&lt;link rel=\"alternate\" type=\"application\/rss+xml\" href=\"&lt;?php bloginfo('comments_rss2_url'); ?&gt;\" \/&gt;<\/pre>\n<p>Substituting this code with the suggested changes below will be to decrease the database requests successfully:<\/p>\n<pre class=\"lang:default decode:true\">&lt;link rel=\"shortcut icon\" href=\"http:\/\/example.com\/wp-content\/themes\/YOURTEMPLATE\/favicon.jpg\" type=\"image\/x-icon\" \/&gt;\n&lt;meta http-equiv=\"content-type\" content=\"text\/html; charset=UTF-8\" \/&gt;\n&lt;link rel=\"stylesheet\" type=\"text\/css\" media=\"screen\" href=\"http:\/\/example.com\/wp-content\/themes\/ YOURTEMPLATE \/style.css\" \/&gt;\n&lt;link rel=\"alternate\" type=\"application\/rss+xml\" href=\"http:\/\/example.com\/feed\" \/&gt;\n&lt;link rel=\"alternate\" type=\"application\/rss+xml\" href=\"http:\/\/example.com\/comments\/feed\" \/&gt;<\/pre>\n<p>Understand that the information contained within the function can be replaced by the information you know, according to the examples above, perform this procedure also in other files in your template, especially index.php, single.php, and footer.php.<\/p>\n<h4>Swap the media files folders<\/h4>\n<p>With this simple swap, you will tell browsers that the images uploaded to your site are stored on a different domain, which will allow these browsers to load parallel downloads and thus greatly improve the loading time of your pages.<\/p>\n<p>Check how you can create a subdomain on your website, for example by using the name &#8220;images&#8221;, which will focus as follows:<\/p>\n<pre class=\"lang:default decode:true\">http:\/\/www.images.subdomain.com<\/pre>\n<p>After you have the domain available, install one of the following plug-ins that facilitates this folder change process: the WP Original Media Path or the Upload URL and Path Enabler.<\/p>\n<p>I&#8217;ll bring more tips in the next part of this knowledge base post. Only make changes to new installations, and tell what you think of the results you have obtained. If you know other interesting strategies, share with us.<\/p>\n<p><strong>Related:&nbsp;<a href=\"https:\/\/www.milesweb.in\/hosting-faqs\/installing-wordpress-part-2\/\">What to do after installing WordPress CMS? \u2013 Part 2<\/a><\/strong><\/p>\n","protected":false},"excerpt":{"rendered":"<p>The steps to install WordPress are pretty simple and no one can disagree with that. But with a little more time (and with the knowledge you will acquire here in this article) you can achieve a significant improvement in the safety and quality of your installation. Many new users in WordPress have some difficulty knowing [&hellip;]<\/p>\n","protected":false},"author":9,"featured_media":3320,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[3058],"tags":[],"class_list":["post-3316","post","type-post","status-publish","format-standard","has-post-thumbnail","placeholder-for-hentry","category-getting-started-wordpress"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.1.1 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>What to do after installing WordPress CMS? - Part 1<\/title>\n<meta name=\"description\" content=\"Know what to do after installing WordPress CMS to make your website perform better and help you to generate positive results in several aspects.\" \/>\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.milesweb.in\/hosting-faqs\/installing-wordpress-part-1\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"What to do after installing WordPress CMS? - Part 1\" \/>\n<meta property=\"og:description\" content=\"Know what to do after installing WordPress CMS to make your website perform better and help you to generate positive results in several aspects.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.milesweb.in\/hosting-faqs\/installing-wordpress-part-1\/\" \/>\n<meta property=\"og:site_name\" content=\"Web Hosting FAQs by MilesWeb\" \/>\n<meta property=\"article:published_time\" content=\"2017-03-15T09:08:08+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2026-03-09T13:23:16+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.milesweb.in\/hosting-faqs\/wp-content\/uploads\/2017\/03\/after-installing-wordpress.png\" \/>\n\t<meta property=\"og:image:width\" content=\"848\" \/>\n\t<meta property=\"og:image:height\" content=\"444\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Pravin Ganore\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Pravin Ganore\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/www.milesweb.in\/hosting-faqs\/installing-wordpress-part-1\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.milesweb.in\/hosting-faqs\/installing-wordpress-part-1\/\"},\"author\":{\"name\":\"Pravin Ganore\",\"@id\":\"https:\/\/www.milesweb.in\/hosting-faqs\/#\/schema\/person\/9f6aad74f4af57132ba60117b4ab3ea6\"},\"headline\":\"What to do after installing WordPress CMS? &#8211; Part 1\",\"datePublished\":\"2017-03-15T09:08:08+00:00\",\"dateModified\":\"2026-03-09T13:23:16+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.milesweb.in\/hosting-faqs\/installing-wordpress-part-1\/\"},\"wordCount\":640,\"commentCount\":0,\"image\":{\"@id\":\"https:\/\/www.milesweb.in\/hosting-faqs\/installing-wordpress-part-1\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.milesweb.in\/hosting-faqs\/wp-content\/uploads\/2017\/03\/after-installing-wordpress.png\",\"articleSection\":[\"Getting Started\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.milesweb.in\/hosting-faqs\/installing-wordpress-part-1\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.milesweb.in\/hosting-faqs\/installing-wordpress-part-1\/\",\"url\":\"https:\/\/www.milesweb.in\/hosting-faqs\/installing-wordpress-part-1\/\",\"name\":\"What to do after installing WordPress CMS? - Part 1\",\"isPartOf\":{\"@id\":\"https:\/\/www.milesweb.in\/hosting-faqs\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.milesweb.in\/hosting-faqs\/installing-wordpress-part-1\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.milesweb.in\/hosting-faqs\/installing-wordpress-part-1\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.milesweb.in\/hosting-faqs\/wp-content\/uploads\/2017\/03\/after-installing-wordpress.png\",\"datePublished\":\"2017-03-15T09:08:08+00:00\",\"dateModified\":\"2026-03-09T13:23:16+00:00\",\"author\":{\"@id\":\"https:\/\/www.milesweb.in\/hosting-faqs\/#\/schema\/person\/9f6aad74f4af57132ba60117b4ab3ea6\"},\"description\":\"Know what to do after installing WordPress CMS to make your website perform better and help you to generate positive results in several aspects.\",\"breadcrumb\":{\"@id\":\"https:\/\/www.milesweb.in\/hosting-faqs\/installing-wordpress-part-1\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.milesweb.in\/hosting-faqs\/installing-wordpress-part-1\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.milesweb.in\/hosting-faqs\/installing-wordpress-part-1\/#primaryimage\",\"url\":\"https:\/\/www.milesweb.in\/hosting-faqs\/wp-content\/uploads\/2017\/03\/after-installing-wordpress.png\",\"contentUrl\":\"https:\/\/www.milesweb.in\/hosting-faqs\/wp-content\/uploads\/2017\/03\/after-installing-wordpress.png\",\"width\":848,\"height\":444,\"caption\":\"What to do after installing WordPress\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.milesweb.in\/hosting-faqs\/installing-wordpress-part-1\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.milesweb.in\/hosting-faqs\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"What to do after installing WordPress CMS? &#8211; Part 1\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.milesweb.in\/hosting-faqs\/#website\",\"url\":\"https:\/\/www.milesweb.in\/hosting-faqs\/\",\"name\":\"Web Hosting FAQs by MilesWeb\",\"description\":\"\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.milesweb.in\/hosting-faqs\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.milesweb.in\/hosting-faqs\/#\/schema\/person\/9f6aad74f4af57132ba60117b4ab3ea6\",\"name\":\"Pravin Ganore\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.milesweb.in\/hosting-faqs\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/911c7c72d64a0d0e0b6c8f1be7e7421c413395f2f2403d0adb26ae16b4130572?s=96&d=blank&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/911c7c72d64a0d0e0b6c8f1be7e7421c413395f2f2403d0adb26ae16b4130572?s=96&d=blank&r=g\",\"caption\":\"Pravin Ganore\"},\"description\":\"Pravin is Journalist Specializing in Blogging, Social Networking and Community Management. As a constant learner, he is always aiming towards new ideas and greater knowledge. When he is not doing research, reading, or writing for blogs, you can find him hanging around social media sites.\",\"sameAs\":[\"https:\/\/www.milesweb.com\"],\"url\":\"https:\/\/www.milesweb.in\/hosting-faqs\/author\/pravin\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"What to do after installing WordPress CMS? - Part 1","description":"Know what to do after installing WordPress CMS to make your website perform better and help you to generate positive results in several aspects.","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.milesweb.in\/hosting-faqs\/installing-wordpress-part-1\/","og_locale":"en_US","og_type":"article","og_title":"What to do after installing WordPress CMS? - Part 1","og_description":"Know what to do after installing WordPress CMS to make your website perform better and help you to generate positive results in several aspects.","og_url":"https:\/\/www.milesweb.in\/hosting-faqs\/installing-wordpress-part-1\/","og_site_name":"Web Hosting FAQs by MilesWeb","article_published_time":"2017-03-15T09:08:08+00:00","article_modified_time":"2026-03-09T13:23:16+00:00","og_image":[{"width":848,"height":444,"url":"https:\/\/www.milesweb.in\/hosting-faqs\/wp-content\/uploads\/2017\/03\/after-installing-wordpress.png","type":"image\/png"}],"author":"Pravin Ganore","twitter_misc":{"Written by":"Pravin Ganore","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.milesweb.in\/hosting-faqs\/installing-wordpress-part-1\/#article","isPartOf":{"@id":"https:\/\/www.milesweb.in\/hosting-faqs\/installing-wordpress-part-1\/"},"author":{"name":"Pravin Ganore","@id":"https:\/\/www.milesweb.in\/hosting-faqs\/#\/schema\/person\/9f6aad74f4af57132ba60117b4ab3ea6"},"headline":"What to do after installing WordPress CMS? &#8211; Part 1","datePublished":"2017-03-15T09:08:08+00:00","dateModified":"2026-03-09T13:23:16+00:00","mainEntityOfPage":{"@id":"https:\/\/www.milesweb.in\/hosting-faqs\/installing-wordpress-part-1\/"},"wordCount":640,"commentCount":0,"image":{"@id":"https:\/\/www.milesweb.in\/hosting-faqs\/installing-wordpress-part-1\/#primaryimage"},"thumbnailUrl":"https:\/\/www.milesweb.in\/hosting-faqs\/wp-content\/uploads\/2017\/03\/after-installing-wordpress.png","articleSection":["Getting Started"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.milesweb.in\/hosting-faqs\/installing-wordpress-part-1\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.milesweb.in\/hosting-faqs\/installing-wordpress-part-1\/","url":"https:\/\/www.milesweb.in\/hosting-faqs\/installing-wordpress-part-1\/","name":"What to do after installing WordPress CMS? - Part 1","isPartOf":{"@id":"https:\/\/www.milesweb.in\/hosting-faqs\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.milesweb.in\/hosting-faqs\/installing-wordpress-part-1\/#primaryimage"},"image":{"@id":"https:\/\/www.milesweb.in\/hosting-faqs\/installing-wordpress-part-1\/#primaryimage"},"thumbnailUrl":"https:\/\/www.milesweb.in\/hosting-faqs\/wp-content\/uploads\/2017\/03\/after-installing-wordpress.png","datePublished":"2017-03-15T09:08:08+00:00","dateModified":"2026-03-09T13:23:16+00:00","author":{"@id":"https:\/\/www.milesweb.in\/hosting-faqs\/#\/schema\/person\/9f6aad74f4af57132ba60117b4ab3ea6"},"description":"Know what to do after installing WordPress CMS to make your website perform better and help you to generate positive results in several aspects.","breadcrumb":{"@id":"https:\/\/www.milesweb.in\/hosting-faqs\/installing-wordpress-part-1\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.milesweb.in\/hosting-faqs\/installing-wordpress-part-1\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.milesweb.in\/hosting-faqs\/installing-wordpress-part-1\/#primaryimage","url":"https:\/\/www.milesweb.in\/hosting-faqs\/wp-content\/uploads\/2017\/03\/after-installing-wordpress.png","contentUrl":"https:\/\/www.milesweb.in\/hosting-faqs\/wp-content\/uploads\/2017\/03\/after-installing-wordpress.png","width":848,"height":444,"caption":"What to do after installing WordPress"},{"@type":"BreadcrumbList","@id":"https:\/\/www.milesweb.in\/hosting-faqs\/installing-wordpress-part-1\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.milesweb.in\/hosting-faqs\/"},{"@type":"ListItem","position":2,"name":"What to do after installing WordPress CMS? &#8211; Part 1"}]},{"@type":"WebSite","@id":"https:\/\/www.milesweb.in\/hosting-faqs\/#website","url":"https:\/\/www.milesweb.in\/hosting-faqs\/","name":"Web Hosting FAQs by MilesWeb","description":"","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.milesweb.in\/hosting-faqs\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/www.milesweb.in\/hosting-faqs\/#\/schema\/person\/9f6aad74f4af57132ba60117b4ab3ea6","name":"Pravin Ganore","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.milesweb.in\/hosting-faqs\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/911c7c72d64a0d0e0b6c8f1be7e7421c413395f2f2403d0adb26ae16b4130572?s=96&d=blank&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/911c7c72d64a0d0e0b6c8f1be7e7421c413395f2f2403d0adb26ae16b4130572?s=96&d=blank&r=g","caption":"Pravin Ganore"},"description":"Pravin is Journalist Specializing in Blogging, Social Networking and Community Management. As a constant learner, he is always aiming towards new ideas and greater knowledge. When he is not doing research, reading, or writing for blogs, you can find him hanging around social media sites.","sameAs":["https:\/\/www.milesweb.com"],"url":"https:\/\/www.milesweb.in\/hosting-faqs\/author\/pravin\/"}]}},"_links":{"self":[{"href":"https:\/\/www.milesweb.in\/hosting-faqs\/wp-json\/wp\/v2\/posts\/3316","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.milesweb.in\/hosting-faqs\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.milesweb.in\/hosting-faqs\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.milesweb.in\/hosting-faqs\/wp-json\/wp\/v2\/users\/9"}],"replies":[{"embeddable":true,"href":"https:\/\/www.milesweb.in\/hosting-faqs\/wp-json\/wp\/v2\/comments?post=3316"}],"version-history":[{"count":7,"href":"https:\/\/www.milesweb.in\/hosting-faqs\/wp-json\/wp\/v2\/posts\/3316\/revisions"}],"predecessor-version":[{"id":16475,"href":"https:\/\/www.milesweb.in\/hosting-faqs\/wp-json\/wp\/v2\/posts\/3316\/revisions\/16475"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.milesweb.in\/hosting-faqs\/wp-json\/wp\/v2\/media\/3320"}],"wp:attachment":[{"href":"https:\/\/www.milesweb.in\/hosting-faqs\/wp-json\/wp\/v2\/media?parent=3316"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.milesweb.in\/hosting-faqs\/wp-json\/wp\/v2\/categories?post=3316"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.milesweb.in\/hosting-faqs\/wp-json\/wp\/v2\/tags?post=3316"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}