{"id":51644,"date":"2020-01-09T14:03:19","date_gmt":"2020-01-09T19:03:19","guid":{"rendered":"https:\/\/www.inmotionhosting.com\/support\/?p=51644"},"modified":"2021-08-16T15:43:10","modified_gmt":"2021-08-16T19:43:10","slug":"wp-config-file","status":"publish","type":"post","link":"https:\/\/www.inmotionhosting.com\/support\/edu\/wordpress\/wp-config-file\/","title":{"rendered":"An In-Depth Look at wp-config.php"},"content":{"rendered":"<p><a href=\"https:\/\/www.inmotionhosting.com\/support\/edu\/wordpress\/wordpress-troubleshooting\/\">Troubleshooting a WordPress site<\/a> often requires you to edit the <strong>wp-config.php file<\/strong>. If you\u2019ve only worked with the WordPress dashboard, editing code can be a bit intimidating. Don\u2019t worry, it\u2019s easier than it seems! All you need is to understand the structure of the wp-config.php file. Then, you can troubleshoot with confidence by <a href=\"https:\/\/www.inmotionhosting.com\/support\/edu\/cpanel\/using-file-manager-in-cpanel\/\">editing wp-config.php in File Manager<\/a>!<\/p>\n<p><strong>In this article:<\/strong><\/p>\n<ul>\n<li><a href=\"#php\">A Little About PHP<\/a><\/li>\n<li><a href=\"#mysql\">MySQL Settings<\/a><\/li>\n<li><a href=\"#keys\">Keys and Salts<\/a><\/li>\n<li><a href=\"#prefix\">The Table Prefix<\/a><\/li>\n<li><a href=\"#debug\">Using Debug Mode<\/a><\/li>\n<li><a href=\"#happy\">Happy Publishing!<\/a><\/li>\n<\/ul>\n<h2 id=\"php\">A Little About PHP<\/h2>\n<p>WordPress is built using the PHP programming language. New WordPress designers often need to troubleshoot configuration files long before studying PHP. You don\u2019t need to be a PHP expert to troubleshoot a WordPress site. Just a bit of PHP is enough. All you need to understand is what the different parts of the configuration file are doing.<\/p>\n<h3>Comments<\/h3>\n<p>Most programming languages will use <strong>comments<\/strong>. This is code that is ignored by the computer. Comments let programmers explain things directly in the place it matters most. Comments make it easy for someone else to edit or update code later.<\/p>\n<p>The PHP programming language has two different ways to write comments.<\/p>\n<pre class=\"wp-block-code\">\/\/ Single line comments begin with two slashes. \n\n\/\/ Everything after those two slashes is part of the comment as long as it is on the same \u2018line\u2019. \n\n\/*\nThis is a multi-line comment.\nIt begins with a slash and an asterisk. \nIt ends with an asterisk and a slash. \nEverything in between is part of the comment.\nThis lets you easily write long, detailed comments!\n*\/\n<\/pre>\n<p>You will see many variations of comments throughout the wp-config.php document. Some multi-line comments put an asterisk at the start of every line. This serves no technical purpose, but helps the comment stand out.<\/p>\n<h3>Be Careful How You Edit<\/h3>\n<p>If you need to make any changes in your wp-config.php file, be sure to only change the specific value you need to update. For example, take a look at the code sample below:<\/p>\n<pre class=\"wp-block-code\">\/** MySQL database password *\/\ndefine( 'DB_PASSWORD', 'oSPWN5TYyrHt' );\n<\/pre>\n<p>If you need to change the database password listed here, only change the password itself. Leave the single quotes and other punctuation unchanged. In PHP, even small things like parentheses and semicolons can be important! If you aren\u2019t sure about something in the wp-config.php, leave it as is. Better yet, make a backup <a href=\"https:\/\/www.inmotionhosting.com\/support\/edu\/cpanel\/copy-file\/\">copy of the wp-config.php file in File Manager<\/a> first!<\/p>\n<h2 id=\"mysql\">MySQL Settings<\/h2>\n<p>If you\u2019re troubleshooting a database error, the MySQL settings section is the first place to look. There\u2019s a lot going on in this section.<\/p>\n<pre class=\"wp-block-code\">\/\/ ** MySQL settings - You can get this info from your web host ** \/\/\n\/** The name of the database for WordPress *\/\ndefine( 'DB_NAME', 'wpsitename_wp724' );\n\n\/** MySQL database username *\/\ndefine( 'DB_USER', 'wpsitename_wp724' );\n\n\/** MySQL database password *\/\ndefine( 'DB_PASSWORD', 'vBNER5NGzrO9' );<\/pre>\n<p>Usually, the name of the database and user match so that it\u2019s easier to keep track of what goes with what. If you\u2019ve had to set up the database again after moving your site, check the wp-config.php file. Be sure the names and password in the file <a href=\"https:\/\/www.inmotionhosting.com\/support\/edu\/cpanel\/reset-database-password\/\">match what you\u2019ve set up on the server<\/a>.<\/p>\n<p>The rest of the section will not normally need adjustment. It ties the site to the version of the database on the server.<\/p>\n<h2 id=\"keys\">Keys and Salts<\/h2>\n<p>The section labeled <strong>Authentication Unique Keys and Salts<\/strong> generates randomized keys. These are used in a variety of security situations and help encrypt parts of your WordPress site. Some security plugins may change these keys. <a href=\"https:\/\/www.inmotionhosting.com\/support\/edu\/wordpress\/securing-wordpress-using-security-keys-and-salts\/\">There are also a handful of situations where you should change them manually<\/a>. For most users, though, these keys and salts rarely need to be updated. A yearly update helps keep the site secure without requiring much extra maintenance.<\/p>\n<h2 id=\"prefix\">The Table Prefix<\/h2>\n<pre class=\"wp-block-code\">\/**\n * WordPress Database Table prefix.\n *\n * You can have multiple installations in one database if you give each\n * a unique prefix. Only numbers, letters, and underscores please!\n *\/\n$table_prefix = 'wpqp_';\n<\/pre>\n<p>Table prefixes help specify which tables in a database belong to which site. This prevents data overlap if different software uses the same database. You will rarely need to adjust the table prefix. It is sometimes required when moving a database from a previous host. Some people like to change the table prefix for the sake of WordPress site security.<\/p>\n<p class=\"alert alert-info\">Get site security and performance with our <a href=\"https:\/\/www.inmotionhosting.com\/wordpress-hosting\">WordPress Hosting<\/a> plans!<\/p>\n<h2 id=\"debug\">Using Debug Mode<\/h2>\n<pre class=\"wp-block-code\">\/**\n * For developers: WordPress debugging mode.\n *\n * Change this to true to enable the display of notices during development.\n * It is strongly recommended that plugin and theme developers use WP_DEBUG\n * in their development environments.\n *\n * For information on other constants that can be used for debugging,\n * visit the Codex.\n *\n * @link https:\/\/codex.wordpress.org\/Debugging_in_WordPress\n *\/\ndefine( 'WP_DEBUG', false );\n<\/pre>\n<p>When debug mode is on, a WordPress site displays error messages on the site itself. This is great for troubleshooting, but not something you want to be active all the time. Not only does it make the site look unappealing, leaving the site in debug mode is a security risk. Debug mode publicly displays information that, outside of troubleshooting, should usually be kept private. All it takes to <a href=\"https:\/\/www.inmotionhosting.com\/support\/edu\/wordpress\/how-to-enable-wordpress-debugging\/\">turn debug mode<\/a> on is changing \u2018false\u2019 to \u2018true\u2019. Be sure to turn debug mode off when troubleshooting is done.<\/p>\n<h2 id=\"happy\">Happy Publishing!<\/h2>\n<p>The remaining entries of wp-config.php are file paths required for WordPress to run. As the comments suggest, there is nothing more for you to worry about editing or changing.<\/p>\n<p>Remember that, like any form of editing, it\u2019s <a href=\"https:\/\/www.inmotionhosting.com\/support\/edu\/cpanel\/cpanel-backups\/\">good to make backups<\/a>. It\u2019s a great idea to make a copy of your site\u2019s <code>wp-config.php<\/code> file. Name it something like <code>wp-config.php.default.bak<\/code>. The \u2018bak\u2019 is an easy reminder that this is a backup file. The bak extension also prevents the file\u2019s PHP code from running. With a backup copy, you can always return your wp-config.php file to its default state. You can make your edits with confidence, knowing that you can\u2019t permanently mess up anything.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Troubleshooting a WordPress site often requires you to edit the wp-config.php file. If you\u2019ve only worked with the WordPress dashboard, editing code can be a bit intimidating. Don\u2019t worry, it\u2019s easier than it seems! All you need is to understand the structure of the wp-config.php file. Then, you can troubleshoot with confidence by editing wp-config.php<a class=\"moretag\" href=\"https:\/\/www.inmotionhosting.com\/support\/edu\/wordpress\/wp-config-file\/\"> Read More ><\/a><\/p>\n","protected":false},"author":57014,"featured_media":0,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[56],"tags":[],"class_list":["post-51644","post","type-post","status-publish","format-standard","hentry","category-wordpress"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.1.1 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>wp-config.php | An In-Depth Look at the WordPress Config File<\/title>\n<meta name=\"description\" content=\"An in-depth look at wp-config.php helps you to understand the configuration applied to your website. Learn about the common entries used in the file.\" \/>\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\/edu\/wordpress\/wp-config-file\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"wp-config.php | An In-Depth Look at the WordPress Config File\" \/>\n<meta property=\"og:description\" content=\"An in-depth look at wp-config.php helps you to understand the configuration applied to your website. Learn about the common entries used in the file.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.inmotionhosting.com\/support\/edu\/wordpress\/wp-config-file\/\" \/>\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=\"2020-01-09T19:03:19+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2021-08-16T19:43:10+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\/edu\/wordpress\/wp-config-file\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/edu\/wordpress\/wp-config-file\/\"},\"author\":{\"name\":\"InMotion Hosting Contributor\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/person\/f9a4fc454cd1df128ee8e898d30d4644\"},\"headline\":\"An In-Depth Look at wp-config.php\",\"datePublished\":\"2020-01-09T19:03:19+00:00\",\"dateModified\":\"2021-08-16T19:43:10+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/edu\/wordpress\/wp-config-file\/\"},\"wordCount\":813,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#organization\"},\"articleSection\":[\"WordPress Tutorials\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.inmotionhosting.com\/support\/edu\/wordpress\/wp-config-file\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/edu\/wordpress\/wp-config-file\/\",\"url\":\"https:\/\/www.inmotionhosting.com\/support\/edu\/wordpress\/wp-config-file\/\",\"name\":\"wp-config.php | An In-Depth Look at the WordPress Config File\",\"isPartOf\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#website\"},\"datePublished\":\"2020-01-09T19:03:19+00:00\",\"dateModified\":\"2021-08-16T19:43:10+00:00\",\"description\":\"An in-depth look at wp-config.php helps you to understand the configuration applied to your website. Learn about the common entries used in the file.\",\"breadcrumb\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/edu\/wordpress\/wp-config-file\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.inmotionhosting.com\/support\/edu\/wordpress\/wp-config-file\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/edu\/wordpress\/wp-config-file\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.inmotionhosting.com\/support\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"An In-Depth Look at wp-config.php\"}]},{\"@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":"wp-config.php | An In-Depth Look at the WordPress Config File","description":"An in-depth look at wp-config.php helps you to understand the configuration applied to your website. Learn about the common entries used in the file.","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\/edu\/wordpress\/wp-config-file\/","og_locale":"en_US","og_type":"article","og_title":"wp-config.php | An In-Depth Look at the WordPress Config File","og_description":"An in-depth look at wp-config.php helps you to understand the configuration applied to your website. Learn about the common entries used in the file.","og_url":"https:\/\/www.inmotionhosting.com\/support\/edu\/wordpress\/wp-config-file\/","og_site_name":"InMotion Hosting Support Center","article_publisher":"https:\/\/www.facebook.com\/inmotionhosting\/","article_published_time":"2020-01-09T19:03:19+00:00","article_modified_time":"2021-08-16T19:43:10+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\/edu\/wordpress\/wp-config-file\/#article","isPartOf":{"@id":"https:\/\/www.inmotionhosting.com\/support\/edu\/wordpress\/wp-config-file\/"},"author":{"name":"InMotion Hosting Contributor","@id":"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/person\/f9a4fc454cd1df128ee8e898d30d4644"},"headline":"An In-Depth Look at wp-config.php","datePublished":"2020-01-09T19:03:19+00:00","dateModified":"2021-08-16T19:43:10+00:00","mainEntityOfPage":{"@id":"https:\/\/www.inmotionhosting.com\/support\/edu\/wordpress\/wp-config-file\/"},"wordCount":813,"commentCount":0,"publisher":{"@id":"https:\/\/www.inmotionhosting.com\/support\/#organization"},"articleSection":["WordPress Tutorials"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.inmotionhosting.com\/support\/edu\/wordpress\/wp-config-file\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.inmotionhosting.com\/support\/edu\/wordpress\/wp-config-file\/","url":"https:\/\/www.inmotionhosting.com\/support\/edu\/wordpress\/wp-config-file\/","name":"wp-config.php | An In-Depth Look at the WordPress Config File","isPartOf":{"@id":"https:\/\/www.inmotionhosting.com\/support\/#website"},"datePublished":"2020-01-09T19:03:19+00:00","dateModified":"2021-08-16T19:43:10+00:00","description":"An in-depth look at wp-config.php helps you to understand the configuration applied to your website. Learn about the common entries used in the file.","breadcrumb":{"@id":"https:\/\/www.inmotionhosting.com\/support\/edu\/wordpress\/wp-config-file\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.inmotionhosting.com\/support\/edu\/wordpress\/wp-config-file\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.inmotionhosting.com\/support\/edu\/wordpress\/wp-config-file\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.inmotionhosting.com\/support\/"},{"@type":"ListItem","position":2,"name":"An In-Depth Look at wp-config.php"}]},{"@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\/51644","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=51644"}],"version-history":[{"count":14,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/posts\/51644\/revisions"}],"predecessor-version":[{"id":83055,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/posts\/51644\/revisions\/83055"}],"wp:attachment":[{"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/media?parent=51644"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/categories?post=51644"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/tags?post=51644"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}