{"id":1452,"date":"2021-07-27T06:25:39","date_gmt":"2021-07-27T11:25:39","guid":{"rendered":"https:\/\/www.knownhost.com\/kb\/?p=1452"},"modified":"2023-10-02T08:46:16","modified_gmt":"2023-10-02T13:46:16","slug":"reset-wordpress-admin-via-mysql","status":"publish","type":"post","link":"https:\/\/www.knownhost.com\/kb\/reset-wordpress-admin-via-mysql\/","title":{"rendered":"How can I reset my WordPress admin password with MySQL?"},"content":{"rendered":"\n<p>If you forget the admin password to your WordPress site, you may need to reset it. Although normally resetting the password can be done from&nbsp;<a href=\"https:\/\/codex.wordpress.org\/Resetting_Your_Password#To_Change_Your_Password\">within WordPress<\/a>, that isn&#8217;t much help if the reason you need it changed is because you do not know the old one. Here, we go over how to change the WordPress password using mysql directly, so that you can then log into the WordPress admin area to change the password normally. As always, you can&nbsp;<a href=\"https:\/\/www.knownhost.com\/kb\/how-to-submit-a-ticket\/\">open a Support Ticket<\/a>&nbsp;if you need any assistance. Here are the things you will need to get started:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>SSH access to your server<\/li>\n\n\n\n<li>The exact name of the database for this specific WordPress installation.<\/li>\n<\/ul>\n\n\n\n<p>First, log into the server via&nbsp;<a href=\"https:\/\/www.knownhost.com\/kb\/how-to-connect-with-ssh\/\">SSH<\/a>.<\/p>\n\n\n\n<p>Next, we choose a temporary password. You can learn more about passwords in general&nbsp;<a href=\"https:\/\/www.knownhost.com\/kb\/how-can-i-generate-a-secure-random-password\/\">here<\/a>. Since this one is only temporary, it is sufficient for our purposes to use 23 alphanumeric characters of both cases. We can generate one of these as follows. When you run it you should get different output. Do&nbsp;<em><strong>not<\/strong><\/em>&nbsp;use the example password shown in this article!<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>  root@host &#091;~]# head -c 23 \/dev\/urandom | base64 | tr -d '\/+=' | cut -c1-23\n  wAXMRV05x8iMaAoW5BsNewa<\/code><\/pre>\n\n\n\n<p>If your server has a recent version of MySQL, the md5 hash can be calculated within the same MySQL command where we set the password. First, we log into MySQL:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>  root@host &#091;~]# mysql\n  Welcome to the MySQL monitor.  Commands end with ; or \\g.\n  Your MySQL connection id is 123007\n  Server version: 5.6.33 MySQL Community Server (GPL)\n\n  Copyright (c) 2000, 2016, Oracle and\/or its affiliates. All rights reserved.\n\n  Oracle is a registered trademark of Oracle Corporation and\/or its\n  affiliates. Other names may be trademarks of their respective owners.\n\n  Type 'help;' or '\\h' for help. Type '\\c' to clear the current input statement.\n\n  mysql&gt; <\/code><\/pre>\n\n\n\n<p>If your server does not use cPanel, you may need to supply a username and password for MySQL by running the command like this:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>  # mysql -u mysqluser -p<\/code><\/pre>\n\n\n\n<p>then entering the needed password at the prompt.<\/p>\n\n\n\n<p>Once you are logged into MySQL, you want to use the database for the particular site. You can see the list of databases with<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>  mysql&gt; show databases;\n  +-----------------------------------------------------------------+\n  | Database                                                        |\n  +-----------------------------------------------------------------+\n  | information_schema                                              |\n  | cpuser_dbname                                                   |\n  | cphulkd                                                         |\n  | eximstats                                                       |\n  | cpuser2_dbname                                                  |\n  | leechprotect                                                    |\n  | modsec                                                          |\n  | mysql                                                           |\n  | performance_schema                                              |\n  | roundcube                                                       |\n  | cpuser3_dbname                                                  |\n  +-----------------------------------------------------------------+\n  11 rows in set (0.00 sec)\n\n  mysql&gt; <\/code><\/pre>\n\n\n\n<p>To choose the database, we use the &#8220;use&#8221; command:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>  mysql&gt; use cpuser3_dbname;\n  Database changed<\/code><\/pre>\n\n\n\n<p>Next, we look for the name of the specific table we want. We want the table whose name ends in &#8220;users&#8221;:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>  mysql&gt; show tables like '%users';\n  +-----------------------------------+\n  | Tables_in_cpuser3_dbname (%users) |\n  +-----------------------------------+\n  | wp_users                          |\n  +-----------------------------------+\n  1 row in set (0.00 sec)<\/code><\/pre>\n\n\n\n<p>We want to look at the list of users, to find the ID# of the account we are changing the password for:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>  mysql&gt; select ID,user_login,user_pass from wp_users;\n  +----+-------------------------+------------------------------------+\n  | ID | user_login              | user_pass                          |\n  +----+-------------------------+------------------------------------+\n  |  2 | someuser                | $P$BPy4uj0AQuInJXUAg95NbKmz7udQR6\/ |\n  |  3 | test                    | $P$BiXazWPE.9wyLQ67aO.dfLZ0mFrnM81 |\n  +----+-------------------------+------------------------------------+\n  2 rows in set (0.00 sec)<\/code><\/pre>\n\n\n\n<p>These are only hashes of passwords, not the passwords themselves. In this case, we want to change the password of user &#8220;test&#8221;, which has ID of &#8220;3&#8221;. So, keeping in mind the password we generated earlier, we can proceed as follows:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>  mysql&gt; update wp_users set user_pass = MD5('wAXMRV05x8iMaAoW5BsNewa') where ID = 3;\n  Query OK, 1 row affected (0.00 sec)\n  Rows matched: 1  Changed: 1  Warnings: 0<\/code><\/pre>\n\n\n<div class=\"kb-shortcode kb-shortcode_warning\">\n                    <div class=\"kb-shortcode-icon\">\n                        <i class=\"fa fa-exclamation-triangle fa-2x\"><\/i>\n                    <\/div>\n                    <div class=\"kb-shortcode-content_warning\">Remember: Do NOT use the password shown in the example. Use a different, randomly-generated password, using a command like the one demonstrated above.<\/div>\n                <\/div>\n\n\n\n<p>Next, log into the WordPress site with the new password. Because we just set the password unsalted, we want to reset the password again through the WordPress interface. Once logged into WordPress, you can go to the &#8220;Profile&#8221; page and scroll down to the &#8220;Account Management&#8221; section. Next to &#8220;New Password&#8221;, there is a button for &#8220;Generate Password&#8221;.<\/p>\n\n\n\n<p>If it is an admin user you are logging in as, the profile page is in the &#8220;Users&#8221; section, and is called &#8220;Your Profile&#8221;.<\/p>\n\n\n\n<p>To make sure the password is random, we can generate it using \/dev\/urandom again as before, once we have logged out of MySQL. If we want to be extra-careful, we can use fifty characters:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>  root@host &#091;~]# head -c 50 \/dev\/urandom | base64 | tr -d '\/+=' | cut -c1-50\n  fD6E8bX2NGWcKOeqpVy63v4EXIHcDhqMZd903nnh04WtqaoMgk<\/code><\/pre>\n\n\n\n<p>but as long as the password really is random, 23 is still sufficient:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>  root@host &#091;~]# head -c 23 \/dev\/urandom | base64 | tr -d '\/+=' | cut -c1-23\n  i8elmaGIVPerj7SdyzyQUWU<\/code><\/pre>\n\n\n\n<p>If you want to generate several to choose between, you can make a loop:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>  root@host &#091;~]# for each in $(seq 23); do head -c 23 \/dev\/urandom | base64 | tr -d '\/+=' | cut -c1-23; done\n  BZ7ObDNVxLTYVZ9nMKgn5mF\n  033vOQwm4RjuC7ICZMHiN2t\n  LaY8Hu8vcgRGlZwFKxddRVv\n  f8n6haYdsOM12CWhkdJe0JU\n  1jrEkqs9YqIErIlv1M2QHDt\n  iJnyUChfUGowEkBMLJgxWXn\n  IQDTRs7pEXxjK06x8XWI3aP\n  Al8UFBmTLlF0qAKEfRbK8aC\n  j7s0VMxguvMqB7s4TSfXKp8\n  7AiS6Q9g832l2IAgHAMLZSn\n  bvjSZBJSzK86pbHSwsjx6Y4\n  1RkSop5zgGGjeMMHlZ5fpZw\n  4SDnWr7iStzIy2aZZS93NkY\n  IYBz05ugzm2YnAUuAIUhipC\n  kCLJmGxnToYgLW0FTjW6yIu\n  uxbXglSNqs7IieyOOWOaYxw\n  OOldEpyEV1mzV5QtIlK9Lod\n  mfKH9aOsxh89tps870OSTCJ\n  z59C97dAabjS5XBYgLysOO4\n  Z6REJyA4PZSUUCCd9becZyq\n  ApR357yDAkAL14D6N6tdq2J\n  7ZBb8q2kXAQyMfxZpycqf8w\n  OveV0IZN6D0preuHZ2eWcLx<\/code><\/pre>\n\n\n<div class=\"kb-shortcode kb-shortcode_warning\">\n                    <div class=\"kb-shortcode-icon\">\n                        <i class=\"fa fa-exclamation-triangle fa-2x\"><\/i>\n                    <\/div>\n                    <div class=\"kb-shortcode-content_warning\">Remember not to actually use any of the example passwords shown in this article! You can still use the same commands to generate passwords, but do not use the specific results shown on this page.<\/div>\n                <\/div>\n\n\n\n<p>Once you have chosen one of these passwords, click the &#8220;Generate Password&#8221; button next to the &#8220;New Password&#8221; label. In recent versions of WordPress, the automatically-generated password might be strong already, but if it is not, you can use one of the commands shown here to make a different one. To use one of the randomly generated passwords created elsewhere,&nbsp;empty out what WordPress tries to generate, and then copy and paste in the chosen password you have created.&nbsp;<strong>Make sure the password you use is long, randomized, and unique!<\/strong><\/p>\n\n\n\n<p>Whatever password you choose, write it down somewhere safe while you work on memorizing it. Do not store it on the computer.&nbsp;It is often recommended not to write down passwords, in case someone else finds the paper, but as long as you are careful with that piece of paper, it is likely to be better than storing it in your computer, or using a shorter or less randomized password that might be &#8220;easier to remember&#8221;.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>If you forget the admin password to your WordPress site, you may need to reset it. Although normally resetting the password can be done from&nbsp;within WordPress, that isn&#8217;t much help if the reason you need it changed is because you do not know the old one. Here, we go over how to change the WordPress [&hellip;]<\/p>\n","protected":false},"author":4,"featured_media":0,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[146],"tags":[106],"class_list":["post-1452","post","type-post","status-publish","format-standard","hentry","category-wordpress","tag-wordpress"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.5 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>How can I reset my WordPress admin password with MySQL? - KnownHost<\/title>\n<meta name=\"description\" content=\"Need to reset WordPress password but cannot log in to WordPress? Learn how to reset your password using MySQL.\" \/>\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.knownhost.com\/kb\/reset-wordpress-admin-via-mysql\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How can I reset my WordPress admin password with MySQL? - KnownHost\" \/>\n<meta property=\"og:description\" content=\"Need to reset WordPress password but cannot log in to WordPress? Learn how to reset your password using MySQL.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.knownhost.com\/kb\/reset-wordpress-admin-via-mysql\/\" \/>\n<meta property=\"og:site_name\" content=\"KnownHost\" \/>\n<meta property=\"article:published_time\" content=\"2021-07-27T11:25:39+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-10-02T13:46:16+00:00\" \/>\n<meta name=\"author\" content=\"Jonathan K. W.\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Jonathan K. W.\" \/>\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.knownhost.com\\\/kb\\\/reset-wordpress-admin-via-mysql\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.knownhost.com\\\/kb\\\/reset-wordpress-admin-via-mysql\\\/\"},\"author\":{\"name\":\"Jonathan K. W.\",\"@id\":\"https:\\\/\\\/www.knownhost.com\\\/kb\\\/#\\\/schema\\\/person\\\/3db6e20d1f33519cd68fe0ba1230a48b\"},\"headline\":\"How can I reset my WordPress admin password with MySQL?\",\"datePublished\":\"2021-07-27T11:25:39+00:00\",\"dateModified\":\"2023-10-02T13:46:16+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.knownhost.com\\\/kb\\\/reset-wordpress-admin-via-mysql\\\/\"},\"wordCount\":756,\"keywords\":[\"wordpress\"],\"articleSection\":[\"WordPress\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.knownhost.com\\\/kb\\\/reset-wordpress-admin-via-mysql\\\/\",\"url\":\"https:\\\/\\\/www.knownhost.com\\\/kb\\\/reset-wordpress-admin-via-mysql\\\/\",\"name\":\"How can I reset my WordPress admin password with MySQL? - KnownHost\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.knownhost.com\\\/kb\\\/#website\"},\"datePublished\":\"2021-07-27T11:25:39+00:00\",\"dateModified\":\"2023-10-02T13:46:16+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/www.knownhost.com\\\/kb\\\/#\\\/schema\\\/person\\\/3db6e20d1f33519cd68fe0ba1230a48b\"},\"description\":\"Need to reset WordPress password but cannot log in to WordPress? Learn how to reset your password using MySQL.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.knownhost.com\\\/kb\\\/reset-wordpress-admin-via-mysql\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.knownhost.com\\\/kb\\\/reset-wordpress-admin-via-mysql\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.knownhost.com\\\/kb\\\/reset-wordpress-admin-via-mysql\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.knownhost.com\\\/kb\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How can I reset my WordPress admin password with MySQL?\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.knownhost.com\\\/kb\\\/#website\",\"url\":\"https:\\\/\\\/www.knownhost.com\\\/kb\\\/\",\"name\":\"KnownHost\",\"description\":\"KnownHost provides a comprehensive webhosting knowledge base to help answer many of your common webhosting and linux questions.\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.knownhost.com\\\/kb\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.knownhost.com\\\/kb\\\/#\\\/schema\\\/person\\\/3db6e20d1f33519cd68fe0ba1230a48b\",\"name\":\"Jonathan K. W.\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/f432b99e6651fe8d1deb57a285bd84e806f1c9ae8b4c6c585d7e3a0b33789ad9?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/f432b99e6651fe8d1deb57a285bd84e806f1c9ae8b4c6c585d7e3a0b33789ad9?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/f432b99e6651fe8d1deb57a285bd84e806f1c9ae8b4c6c585d7e3a0b33789ad9?s=96&d=mm&r=g\",\"caption\":\"Jonathan K. W.\"},\"sameAs\":[\"https:\\\/\\\/www.knownhost.com\"]}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How can I reset my WordPress admin password with MySQL? - KnownHost","description":"Need to reset WordPress password but cannot log in to WordPress? Learn how to reset your password using MySQL.","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.knownhost.com\/kb\/reset-wordpress-admin-via-mysql\/","og_locale":"en_US","og_type":"article","og_title":"How can I reset my WordPress admin password with MySQL? - KnownHost","og_description":"Need to reset WordPress password but cannot log in to WordPress? Learn how to reset your password using MySQL.","og_url":"https:\/\/www.knownhost.com\/kb\/reset-wordpress-admin-via-mysql\/","og_site_name":"KnownHost","article_published_time":"2021-07-27T11:25:39+00:00","article_modified_time":"2023-10-02T13:46:16+00:00","author":"Jonathan K. W.","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Jonathan K. W.","Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.knownhost.com\/kb\/reset-wordpress-admin-via-mysql\/#article","isPartOf":{"@id":"https:\/\/www.knownhost.com\/kb\/reset-wordpress-admin-via-mysql\/"},"author":{"name":"Jonathan K. W.","@id":"https:\/\/www.knownhost.com\/kb\/#\/schema\/person\/3db6e20d1f33519cd68fe0ba1230a48b"},"headline":"How can I reset my WordPress admin password with MySQL?","datePublished":"2021-07-27T11:25:39+00:00","dateModified":"2023-10-02T13:46:16+00:00","mainEntityOfPage":{"@id":"https:\/\/www.knownhost.com\/kb\/reset-wordpress-admin-via-mysql\/"},"wordCount":756,"keywords":["wordpress"],"articleSection":["WordPress"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/www.knownhost.com\/kb\/reset-wordpress-admin-via-mysql\/","url":"https:\/\/www.knownhost.com\/kb\/reset-wordpress-admin-via-mysql\/","name":"How can I reset my WordPress admin password with MySQL? - KnownHost","isPartOf":{"@id":"https:\/\/www.knownhost.com\/kb\/#website"},"datePublished":"2021-07-27T11:25:39+00:00","dateModified":"2023-10-02T13:46:16+00:00","author":{"@id":"https:\/\/www.knownhost.com\/kb\/#\/schema\/person\/3db6e20d1f33519cd68fe0ba1230a48b"},"description":"Need to reset WordPress password but cannot log in to WordPress? Learn how to reset your password using MySQL.","breadcrumb":{"@id":"https:\/\/www.knownhost.com\/kb\/reset-wordpress-admin-via-mysql\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.knownhost.com\/kb\/reset-wordpress-admin-via-mysql\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.knownhost.com\/kb\/reset-wordpress-admin-via-mysql\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.knownhost.com\/kb\/"},{"@type":"ListItem","position":2,"name":"How can I reset my WordPress admin password with MySQL?"}]},{"@type":"WebSite","@id":"https:\/\/www.knownhost.com\/kb\/#website","url":"https:\/\/www.knownhost.com\/kb\/","name":"KnownHost","description":"KnownHost provides a comprehensive webhosting knowledge base to help answer many of your common webhosting and linux questions.","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.knownhost.com\/kb\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/www.knownhost.com\/kb\/#\/schema\/person\/3db6e20d1f33519cd68fe0ba1230a48b","name":"Jonathan K. W.","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/f432b99e6651fe8d1deb57a285bd84e806f1c9ae8b4c6c585d7e3a0b33789ad9?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/f432b99e6651fe8d1deb57a285bd84e806f1c9ae8b4c6c585d7e3a0b33789ad9?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/f432b99e6651fe8d1deb57a285bd84e806f1c9ae8b4c6c585d7e3a0b33789ad9?s=96&d=mm&r=g","caption":"Jonathan K. W."},"sameAs":["https:\/\/www.knownhost.com"]}]}},"_links":{"self":[{"href":"https:\/\/www.knownhost.com\/kb\/wp-json\/wp\/v2\/posts\/1452","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.knownhost.com\/kb\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.knownhost.com\/kb\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.knownhost.com\/kb\/wp-json\/wp\/v2\/users\/4"}],"replies":[{"embeddable":true,"href":"https:\/\/www.knownhost.com\/kb\/wp-json\/wp\/v2\/comments?post=1452"}],"version-history":[{"count":0,"href":"https:\/\/www.knownhost.com\/kb\/wp-json\/wp\/v2\/posts\/1452\/revisions"}],"wp:attachment":[{"href":"https:\/\/www.knownhost.com\/kb\/wp-json\/wp\/v2\/media?parent=1452"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.knownhost.com\/kb\/wp-json\/wp\/v2\/categories?post=1452"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.knownhost.com\/kb\/wp-json\/wp\/v2\/tags?post=1452"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}