{"id":2088,"date":"2020-10-23T06:56:18","date_gmt":"2020-10-22T22:56:18","guid":{"rendered":"https:\/\/www.intelliwolf.com\/?p=2088"},"modified":"2020-10-23T06:56:21","modified_gmt":"2020-10-22T22:56:21","slug":"create-new-wordpress-admin-user-phpmyadmin","status":"publish","type":"post","link":"https:\/\/wordpress-757293-2559390.cloudwaysapps.com\/create-new-wordpress-admin-user-phpmyadmin\/","title":{"rendered":"How To Create A New WordPress Admin User In phpMyAdmin"},"content":{"rendered":"\n

Sometimes a client will give you cPanel access to a WordPress website, but not the login details for an admin.<\/p>\n\n\n\n

Other times, you might find yourself locked out of WordPress, or the site got hacked and the password changed.<\/p>\n\n\n\n

Whatever the reason, you might need to manually create a new admin user through the database.<\/p>\n\n\n\n

How to create a new WordPress admin user in phpMyAdmin<\/strong>:<\/p>\n\n\n\n

  1. Go to wp_users<\/em> and copy a current user<\/a><\/li>
  2. Change the login details<\/a> to the new user and add the password as MD5<\/li>
  3. In wp_usermeta<\/em>, add rows<\/a> connecting wp_capabilities<\/em> and wp_user_level<\/em> to the new user ID.<\/li><\/ol>\n\n\n\n

    Let's go through those steps in detail.<\/p>\n\n\n\n

    Go to wp_users and copy a current user<\/h2>\n\n\n\n

    Login to your cPanel and go to phpMyAdmin<\/p>\n\n\n\n

    \"\"<\/figure><\/div>\n\n\n\n

    Go to the wp_users<\/em> table in your database.<\/p>\n\n\n\n

    If your database uses custom prefixes, then you might not see wp_users<\/em>. Whatever the prefix, you need the row that ends with _users<\/em>.<\/p>\n\n\n\n

    You should see one or more users in the database.<\/p>\n\n\n\n

    Click \"Copy\" on one of the rows.<\/p>\n\n\n\n

    \"\"<\/figure><\/div>\n\n\n\n

    You'll be taken to a new screen which has all the details of the user you copied already filled out.<\/p>\n\n\n\n

    \"\"<\/figure><\/div>\n\n\n\n

    Change the login details to the new user<\/h2>\n\n\n\n

    Change the following fields to what will become the login for your new user:<\/p>\n\n\n\n

    • user_login<\/li>
    • user_nicename<\/li>
    • user_email<\/li>
    • display_name<\/li><\/ul>\n\n\n\n

      You can set user_login<\/em>, user_nicename<\/em> and display_name<\/em> to be the same thing.<\/p>\n\n\n\n

      In this example, I'll put \"tom\" into those three fields and Tom's email into the user_email<\/em> field.<\/p>\n\n\n\n

      Don't put anything into the ID field. phpMyAdmin will set the ID automatically when you save the row.<\/p>\n\n\n\n

      Add your password in plain text to the user_pass<\/em> field. Don't use an apostrophe in the password. You can use spaces, alphanumeric characters and some special characters. You don't need to get too crazy with the password if you're going to change it in the backend later.<\/p>\n\n\n\n

      In the function dropdown next to user_pass<\/em>, choose \"MD5\". This will convert the password to a hash, which is how WordPress stores passwords in the database.<\/p>\n\n\n\n

      Click \"Go\" to save the row and return to the wp_users<\/em> screen.<\/p>\n\n\n\n

      \"\"<\/figure><\/div>\n\n\n\n

      This will create the new user.<\/p>\n\n\n\n

      \"\"<\/figure><\/div>\n\n\n\n

      Connect the admin ID to user capabilities and level<\/h2>\n\n\n\n

      Before you move on to the next step, take a note of the ID of the user you just created.<\/p>\n\n\n\n

      In this example, the ID is \"2\", but it might be different for you.<\/p>\n\n\n\n

      The ID will be created automatically by incrementing from the last created row, but don't assume that if the only other ID is 1, that the new ID will be 2. If it is higher, it's because at some point there was another user which had the ID of 2 or higher.<\/p>\n\n\n\n

      \"\"<\/figure><\/div>\n\n\n\n

      Go to the wp_usermeta<\/em> table and look for an admin user.<\/p>\n\n\n\n

      Click \"Copy\" on the wp_capabilities<\/em> row.<\/p>\n\n\n\n

      \"\"<\/figure><\/div>\n\n\n\n

      A new screen will open with the admin's details filled out.<\/p>\n\n\n\n

      Just change the user_id<\/em> to your new admin user. In this example, the new admin's ID is 2.<\/p>\n\n\n\n

      If you inserted a new row, rather than copying a current admin, you need these values:<\/p>\n\n\n\n

      • user_id<\/em>: 2 (or whatever the ID of the admin you created is)<\/li>
      • meta_key<\/em>: wp_capabilities<\/li>
      • meta_value<\/em>: a:1:{s:13:\"administrator\";b:1;}<\/li><\/ul>\n\n\n\n

        Don't insert anything at umeta_id<\/em>. phpMyAdmin will take care of that.<\/p>\n\n\n\n

        Click \"Go\" to save the row and return to the previous screen.<\/p>\n\n\n\n

        \"\"<\/figure><\/div>\n\n\n\n

        Copy the wp_user_level<\/em> row, the same way you did with the wp_capabilities<\/em> row.<\/p>\n\n\n\n

        You'll be taken to a new screen.<\/p>\n\n\n\n

        Change the user_id<\/em> to the ID of the admin you created. In this example, the ID is 2.<\/p>\n\n\n\n

        If you inserted a new row, rather than copying a current admin, the information you need to enter is:<\/p>\n\n\n\n

        • user_id<\/em>: 2 (or whatever the admin's ID you created is)<\/li>
        • meta_key<\/em>: wp_user_level<\/li>
        • meta_value<\/em>: 10<\/li><\/ul>\n\n\n\n

          Don't add anything to umeta_id<\/em> as phpMyAdmin will automatically assign that.<\/p>\n\n\n\n

          Click \"Go\" to save the row.<\/p>\n\n\n\n

          \"\"<\/figure><\/div>\n\n\n\n

          That's all you need to do to create a new WordPress admin user through phpMyAdmin.<\/p>\n\n\n\n

          You can go ahead and login to the WordPress dashboard using the credentials you created.<\/p>\n","protected":false},"excerpt":{"rendered":"

          Sometimes a client will give you cPanel access to a WordPress website, but not the login details for an admin. Other times, you might find yourself locked out of WordPress, or the site got hacked and the password changed. Whatever the reason, you might need to manually create a new admin user through the database.<\/p>\n","protected":false},"author":2,"featured_media":0,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[11],"tags":[],"yoast_head":"\nHow To Create A New WordPress Admin User In phpMyAdmin<\/title>\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.intelliwolf.com\/create-new-wordpress-admin-user-phpmyadmin\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How To Create A New WordPress Admin User In phpMyAdmin\" \/>\n<meta property=\"og:description\" content=\"Sometimes a client will give you cPanel access to a WordPress website, but not the login details for an admin. Other times, you might find yourself locked out of WordPress, or the site got hacked and the password changed. Whatever the reason, you might need to manually create a new admin user through the database.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.intelliwolf.com\/create-new-wordpress-admin-user-phpmyadmin\/\" \/>\n<meta property=\"og:site_name\" content=\"Intelliwolf\" \/>\n<meta property=\"article:published_time\" content=\"2020-10-22T22:56:18+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2020-10-22T22:56:21+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/intelliwolf.com\/wp-content\/uploads\/2020\/10\/2020-10-23-new-wp-admin-user-01.png\" \/>\n<meta name=\"author\" content=\"Mike Haydon\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Mike Haydon\" \/>\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.intelliwolf.com\/create-new-wordpress-admin-user-phpmyadmin\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.intelliwolf.com\/create-new-wordpress-admin-user-phpmyadmin\/\"},\"author\":{\"name\":\"Mike Haydon\",\"@id\":\"https:\/\/www.intelliwolf.com\/#\/schema\/person\/7209e3ff14822e4d70d5f194a310f343\"},\"headline\":\"How To Create A New WordPress Admin User In phpMyAdmin\",\"datePublished\":\"2020-10-22T22:56:18+00:00\",\"dateModified\":\"2020-10-22T22:56:21+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.intelliwolf.com\/create-new-wordpress-admin-user-phpmyadmin\/\"},\"wordCount\":710,\"commentCount\":3,\"publisher\":{\"@id\":\"https:\/\/www.intelliwolf.com\/#organization\"},\"image\":{\"@id\":\"https:\/\/www.intelliwolf.com\/create-new-wordpress-admin-user-phpmyadmin\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/intelliwolf.com\/wp-content\/uploads\/2020\/10\/2020-10-23-new-wp-admin-user-01.png\",\"articleSection\":[\"Server\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.intelliwolf.com\/create-new-wordpress-admin-user-phpmyadmin\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.intelliwolf.com\/create-new-wordpress-admin-user-phpmyadmin\/\",\"url\":\"https:\/\/www.intelliwolf.com\/create-new-wordpress-admin-user-phpmyadmin\/\",\"name\":\"How To Create A New WordPress Admin User In phpMyAdmin\",\"isPartOf\":{\"@id\":\"https:\/\/www.intelliwolf.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.intelliwolf.com\/create-new-wordpress-admin-user-phpmyadmin\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.intelliwolf.com\/create-new-wordpress-admin-user-phpmyadmin\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/intelliwolf.com\/wp-content\/uploads\/2020\/10\/2020-10-23-new-wp-admin-user-01.png\",\"datePublished\":\"2020-10-22T22:56:18+00:00\",\"dateModified\":\"2020-10-22T22:56:21+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/www.intelliwolf.com\/create-new-wordpress-admin-user-phpmyadmin\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.intelliwolf.com\/create-new-wordpress-admin-user-phpmyadmin\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.intelliwolf.com\/create-new-wordpress-admin-user-phpmyadmin\/#primaryimage\",\"url\":\"https:\/\/wordpress-757293-2559390.cloudwaysapps.com\/wp-content\/uploads\/2020\/10\/2020-10-23-new-wp-admin-user-01.png\",\"contentUrl\":\"https:\/\/wordpress-757293-2559390.cloudwaysapps.com\/wp-content\/uploads\/2020\/10\/2020-10-23-new-wp-admin-user-01.png\",\"width\":512,\"height\":292},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.intelliwolf.com\/create-new-wordpress-admin-user-phpmyadmin\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.intelliwolf.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Server\",\"item\":\"https:\/\/www.intelliwolf.com\/category\/server\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"How To Create A New WordPress Admin User In phpMyAdmin\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.intelliwolf.com\/#website\",\"url\":\"https:\/\/www.intelliwolf.com\/\",\"name\":\"Intelliwolf\",\"description\":\"WordPress, Web Design and Coding Tutorials\",\"publisher\":{\"@id\":\"https:\/\/www.intelliwolf.com\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.intelliwolf.com\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/www.intelliwolf.com\/#organization\",\"name\":\"Intelliwolf\",\"url\":\"https:\/\/www.intelliwolf.com\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.intelliwolf.com\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/wordpress-757293-2559390.cloudwaysapps.com\/wp-content\/uploads\/intelliwolf-logo-300t.png\",\"contentUrl\":\"https:\/\/wordpress-757293-2559390.cloudwaysapps.com\/wp-content\/uploads\/intelliwolf-logo-300t.png\",\"width\":300,\"height\":100,\"caption\":\"Intelliwolf\"},\"image\":{\"@id\":\"https:\/\/www.intelliwolf.com\/#\/schema\/logo\/image\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.intelliwolf.com\/#\/schema\/person\/7209e3ff14822e4d70d5f194a310f343\",\"name\":\"Mike Haydon\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.intelliwolf.com\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/d5f4754fae310a04dede91d15e57c8a0?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/d5f4754fae310a04dede91d15e57c8a0?s=96&d=mm&r=g\",\"caption\":\"Mike Haydon\"},\"sameAs\":[\"https:\/\/intelliwolf.com\/about-mike-haydon\/\"]}]}<\/script>\n","yoast_head_json":{"title":"How To Create A New WordPress Admin User In phpMyAdmin","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.intelliwolf.com\/create-new-wordpress-admin-user-phpmyadmin\/","og_locale":"en_US","og_type":"article","og_title":"How To Create A New WordPress Admin User In phpMyAdmin","og_description":"Sometimes a client will give you cPanel access to a WordPress website, but not the login details for an admin. Other times, you might find yourself locked out of WordPress, or the site got hacked and the password changed. Whatever the reason, you might need to manually create a new admin user through the database.","og_url":"https:\/\/www.intelliwolf.com\/create-new-wordpress-admin-user-phpmyadmin\/","og_site_name":"Intelliwolf","article_published_time":"2020-10-22T22:56:18+00:00","article_modified_time":"2020-10-22T22:56:21+00:00","og_image":[{"url":"https:\/\/intelliwolf.com\/wp-content\/uploads\/2020\/10\/2020-10-23-new-wp-admin-user-01.png"}],"author":"Mike Haydon","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Mike Haydon","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.intelliwolf.com\/create-new-wordpress-admin-user-phpmyadmin\/#article","isPartOf":{"@id":"https:\/\/www.intelliwolf.com\/create-new-wordpress-admin-user-phpmyadmin\/"},"author":{"name":"Mike Haydon","@id":"https:\/\/www.intelliwolf.com\/#\/schema\/person\/7209e3ff14822e4d70d5f194a310f343"},"headline":"How To Create A New WordPress Admin User In phpMyAdmin","datePublished":"2020-10-22T22:56:18+00:00","dateModified":"2020-10-22T22:56:21+00:00","mainEntityOfPage":{"@id":"https:\/\/www.intelliwolf.com\/create-new-wordpress-admin-user-phpmyadmin\/"},"wordCount":710,"commentCount":3,"publisher":{"@id":"https:\/\/www.intelliwolf.com\/#organization"},"image":{"@id":"https:\/\/www.intelliwolf.com\/create-new-wordpress-admin-user-phpmyadmin\/#primaryimage"},"thumbnailUrl":"https:\/\/intelliwolf.com\/wp-content\/uploads\/2020\/10\/2020-10-23-new-wp-admin-user-01.png","articleSection":["Server"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.intelliwolf.com\/create-new-wordpress-admin-user-phpmyadmin\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.intelliwolf.com\/create-new-wordpress-admin-user-phpmyadmin\/","url":"https:\/\/www.intelliwolf.com\/create-new-wordpress-admin-user-phpmyadmin\/","name":"How To Create A New WordPress Admin User In phpMyAdmin","isPartOf":{"@id":"https:\/\/www.intelliwolf.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.intelliwolf.com\/create-new-wordpress-admin-user-phpmyadmin\/#primaryimage"},"image":{"@id":"https:\/\/www.intelliwolf.com\/create-new-wordpress-admin-user-phpmyadmin\/#primaryimage"},"thumbnailUrl":"https:\/\/intelliwolf.com\/wp-content\/uploads\/2020\/10\/2020-10-23-new-wp-admin-user-01.png","datePublished":"2020-10-22T22:56:18+00:00","dateModified":"2020-10-22T22:56:21+00:00","breadcrumb":{"@id":"https:\/\/www.intelliwolf.com\/create-new-wordpress-admin-user-phpmyadmin\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.intelliwolf.com\/create-new-wordpress-admin-user-phpmyadmin\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.intelliwolf.com\/create-new-wordpress-admin-user-phpmyadmin\/#primaryimage","url":"https:\/\/wordpress-757293-2559390.cloudwaysapps.com\/wp-content\/uploads\/2020\/10\/2020-10-23-new-wp-admin-user-01.png","contentUrl":"https:\/\/wordpress-757293-2559390.cloudwaysapps.com\/wp-content\/uploads\/2020\/10\/2020-10-23-new-wp-admin-user-01.png","width":512,"height":292},{"@type":"BreadcrumbList","@id":"https:\/\/www.intelliwolf.com\/create-new-wordpress-admin-user-phpmyadmin\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.intelliwolf.com\/"},{"@type":"ListItem","position":2,"name":"Server","item":"https:\/\/www.intelliwolf.com\/category\/server\/"},{"@type":"ListItem","position":3,"name":"How To Create A New WordPress Admin User In phpMyAdmin"}]},{"@type":"WebSite","@id":"https:\/\/www.intelliwolf.com\/#website","url":"https:\/\/www.intelliwolf.com\/","name":"Intelliwolf","description":"WordPress, Web Design and Coding Tutorials","publisher":{"@id":"https:\/\/www.intelliwolf.com\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.intelliwolf.com\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.intelliwolf.com\/#organization","name":"Intelliwolf","url":"https:\/\/www.intelliwolf.com\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.intelliwolf.com\/#\/schema\/logo\/image\/","url":"https:\/\/wordpress-757293-2559390.cloudwaysapps.com\/wp-content\/uploads\/intelliwolf-logo-300t.png","contentUrl":"https:\/\/wordpress-757293-2559390.cloudwaysapps.com\/wp-content\/uploads\/intelliwolf-logo-300t.png","width":300,"height":100,"caption":"Intelliwolf"},"image":{"@id":"https:\/\/www.intelliwolf.com\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/www.intelliwolf.com\/#\/schema\/person\/7209e3ff14822e4d70d5f194a310f343","name":"Mike Haydon","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.intelliwolf.com\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/d5f4754fae310a04dede91d15e57c8a0?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/d5f4754fae310a04dede91d15e57c8a0?s=96&d=mm&r=g","caption":"Mike Haydon"},"sameAs":["https:\/\/intelliwolf.com\/about-mike-haydon\/"]}]}},"_links":{"self":[{"href":"https:\/\/wordpress-757293-2559390.cloudwaysapps.com\/wp-json\/wp\/v2\/posts\/2088"}],"collection":[{"href":"https:\/\/wordpress-757293-2559390.cloudwaysapps.com\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/wordpress-757293-2559390.cloudwaysapps.com\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/wordpress-757293-2559390.cloudwaysapps.com\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/wordpress-757293-2559390.cloudwaysapps.com\/wp-json\/wp\/v2\/comments?post=2088"}],"version-history":[{"count":2,"href":"https:\/\/wordpress-757293-2559390.cloudwaysapps.com\/wp-json\/wp\/v2\/posts\/2088\/revisions"}],"predecessor-version":[{"id":2101,"href":"https:\/\/wordpress-757293-2559390.cloudwaysapps.com\/wp-json\/wp\/v2\/posts\/2088\/revisions\/2101"}],"wp:attachment":[{"href":"https:\/\/wordpress-757293-2559390.cloudwaysapps.com\/wp-json\/wp\/v2\/media?parent=2088"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/wordpress-757293-2559390.cloudwaysapps.com\/wp-json\/wp\/v2\/categories?post=2088"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/wordpress-757293-2559390.cloudwaysapps.com\/wp-json\/wp\/v2\/tags?post=2088"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}