{"id":155144,"date":"2016-05-11T14:00:13","date_gmt":"2016-05-11T14:00:13","guid":{"rendered":"https:\/\/premium.wpmudev.org\/blog\/?p=155144"},"modified":"2017-10-15T07:57:08","modified_gmt":"2017-10-15T07:57:08","slug":"tweaking-wp-config","status":"publish","type":"post","link":"https:\/\/wpmudev.com\/blog\/tweaking-wp-config\/","title":{"rendered":"How to Tweak wp-config.php to Protect Your WordPress Site"},"content":{"rendered":"<p>If you think your site is safe\u00a0because it doesn\u2019t have\u00a0any content worthwhile to hackers, think again, because the vast majority of security breaches aren&#8217;t aimed at stealing your data or defacing your site.<\/p>\n<p>Hackers generally want to use your\u00a0server as an email relay for spam, or to setup a temporary web server, usually to serve illegal files. If you&#8217;re hacked, get ready to shell out money for soaring server costs.<\/p>\n<p>There are plenty of different ways you can strengthen the security of your site or Multisite network, but one of the simplest is to tweak your <em>wp-config.php<\/em> file. Updating this configuration file, while not a sure-fire solution for keeping out hackers, is worth doing as part of your overall security strategy.<\/p>\n<p>With that in mind, let&#8217;s look at what WordPress constants are and how to use\u00a0them to make changes to your <em>wp-config.php<\/em>\u00a0file to boost your site&#8217;s security.<\/p>\n<h3>Setting WordPress Constants<\/h3>\n<p>In your WordPress configuration file, also called <em>wp-config.php<\/em>, you can set what are called constants in PHP to execute certain tasks. WordPress has many constants you can use.<\/p>\n<p>The <a href=\"http:\/\/php.net\/manual\/en\/language.constants.php\" rel=\"noopener\" target=\"_blank\">PHP documentation<\/a> describes constants as:<\/p>\n<blockquote><p>&#8220;A constant is an identifier (name) for a simple value. As the name suggests, that value cannot change during the execution of the script (except for magic constants, which aren&#8217;t actually constants). A constant is case-sensitive by default. By convention, constant identifiers are always uppercase.&#8221;<\/p><\/blockquote>\n<p>Simply put, you can set a value to have a name. It&#8217;s also applied globally across an entire script so you can use it again and again. Constants are case-sensitive and usually contain only uppercase letters and underscores.<\/p>\n<p>An actual constant used in WordPress is <code>WP_DEBUG<\/code>\u00a0and this is a great example of how to properly name them since they can only begin in a letter or a single underscore. (You can <a href=\"https:\/\/wpmudev.com\/blog\/debugging-wordpress-how-to-use-wp_debug\/\" target=\"_blank\">read more about how to use <code>WP_DEBUG<\/code> here<\/a>.)<\/p>\n<p>Constants are also wrapped in the <code>define()<\/code> function as shown in this basic syntax example:<\/p>\n<div class=\"gist\" data-gist=\"8fb29471988d827b5b3de42e04d1b8fa\" data-gist-file=\"syntax constants\"><a class=\"loading\" href=\"https:\/\/gist.github.com\/8fb29471988d827b5b3de42e04d1b8fa.js?file=syntax+constants\">Loading gist 8fb29471988d827b5b3de42e04d1b8fa<\/a><div class=\"gist-consent-notice\" style=\"display:none\"><p>Please <a href=\"javascript:Cookiebot.renew()\">update your cookie preferences<\/a> to enable preference cookies to view this gist.<\/p><\/div><\/div>\n<p>In WordPress, the <em>wp-config.php<\/em> file is loaded before the rest of the files that makes up the core. This means, that if you change the value of a constant in <em>wp-config.php<\/em>, you can change how WordPress reacts and functions. You could disable certain features or enable them all by changing the value. In many cases, this can be done by changing <code>false<\/code> to <code>true<\/code> and vice versa, for example.<\/p>\n<p>Below are constants as well as other types of PHP code you can use in your <em>wp-config.php<\/em>\u00a0file to amp up your security. Place them all above the following line in your <em>wp-config.php<\/em> file:<\/p>\n<div class=\"gist\" data-gist=\"1c739b1be3f1dd9a7f11e82e8bb72c91\" data-gist-file=\"wp-config.php stop editing\"><a class=\"loading\" href=\"https:\/\/gist.github.com\/1c739b1be3f1dd9a7f11e82e8bb72c91.js?file=wp-config.php+stop+editing\">Loading gist 1c739b1be3f1dd9a7f11e82e8bb72c91<\/a><div class=\"gist-consent-notice\" style=\"display:none\"><p>Please <a href=\"javascript:Cookiebot.renew()\">update your cookie preferences<\/a> to enable preference cookies to view this gist.<\/p><\/div><\/div>\n<h3>Warning: In Case of Emergency<\/h3>\n<p>Since the changes you&#8217;re about to make can drastically alter your site, it&#8217;s a good idea to back\u00a0it up. If a mistake is made, you can quickly restore your site to a point before you made any changes and once your site is functioning as normal, you can try again.<\/p>\n<p>For more details on how to create a backup or restore your site, check out some of our other posts:\u00a0<a href=\"https:\/\/wpmudev.com\/blog\/backup-with-snapshot\/\" target=\"_blank\" rel=\"noopener\">How to Backup Your WordPress Website (and Multisite) Using Snapshot<\/a>,\u00a0<a href=\"https:\/\/wpmudev.com\/blog\/backup-and-restoring\/\" target=\"_blank\" rel=\"noopener\">Backup Plugins Aren\u2019t About Backing up, They\u2019re About Restoring<\/a> and\u00a0<a href=\"https:\/\/wpmudev.com\/blog\/premium-freemium-wordpress-backup-plugins\/\" target=\"_blank\" rel=\"noopener\">7 Top Premium and Freemium WordPress Backup Plugins Reviewed<\/a>.<\/p>\n<p>If you find you have already been hacked and you&#8217;re trying to beef up your site&#8217;s security, install a security plugin such as <a href=\"https:\/\/wpmudev.com\/project\/wp-defender\/\" target=\"_blank\" rel=\"noopener\">Defender<\/a>\u00a0and <a href=\"https:\/\/wpmudev.com\/blog\/defender\/\" target=\"_blank\">give hackers the smackdown<\/a>.<\/p>\n<p>Once you&#8217;ve made a backup, you can start making the changes below.<\/p>\n<h3>1. Change Your Security Keys<\/h3>\n<p>You may already be aware of the security keys section and you may have previously added unique keys which is great because they make it more difficult for hackers to be able to intrude.<\/p>\n<p>Security keys help encrypt information stored in cookies and it can be helpful to change them up every now and again, especially after your site has been hacked. \u00a0This would effectively end any open sessions of logged in users on your site which means hackers are logged out as well.<\/p>\n<p>As long as you reset your passwords and make sure your site is clean of any <a href=\"https:\/\/wpmudev.com\/blog\/removing-backdoor-exploits\/\" target=\"_blank\" rel=\"noopener\">backdoor exploits<\/a> and the like, your site can be safe from hackers once again.<\/p>\n<p>You can generate a new set of security keys using the <a href=\"https:\/\/api.wordpress.org\/secret-key\/1.1\/salt\/\" rel=\"noopener\" target=\"_blank\">WordPress Security Key Generator<\/a>. Copy the entire output and paste it to replace the section that looks similar to the example below:<\/p>\n<div class=\"gist\" data-gist=\"91acb16b31797bb15a3afde89949a12d\" data-gist-file=\"wp-config.php\"><a class=\"loading\" href=\"https:\/\/gist.github.com\/91acb16b31797bb15a3afde89949a12d.js?file=wp-config.php\">Loading gist 91acb16b31797bb15a3afde89949a12d<\/a><div class=\"gist-consent-notice\" style=\"display:none\"><p>Please <a href=\"javascript:Cookiebot.renew()\">update your cookie preferences<\/a> to enable preference cookies to view this gist.<\/p><\/div><\/div>\n<h3>2. Force the Use of SSL<\/h3>\n<p>An <a href=\"https:\/\/wpmudev.com\/blog\/ssl-https-wordpress\/\" target=\"_blank\" rel=\"noopener\">SSL certificate<\/a> encrypts the connection between your site and your visitor&#8217;s browser so that hackers can&#8217;t intercept and steal personal information. If you already have an SSL certificate installed, forcing your site to use it can help step up your security game.<\/p>\n<p>To force the use of your SSL certificate when both logging in and viewing the admin dashboard, add this line:<\/p>\n<div class=\"gist\" data-gist=\"1f9c627bc9a008f8cc0eb32ae878a767\" data-gist-file=\"wp-config.php\"><a class=\"loading\" href=\"https:\/\/gist.github.com\/1f9c627bc9a008f8cc0eb32ae878a767.js?file=wp-config.php\">Loading gist 1f9c627bc9a008f8cc0eb32ae878a767<\/a><div class=\"gist-consent-notice\" style=\"display:none\"><p>Please <a href=\"javascript:Cookiebot.renew()\">update your cookie preferences<\/a> to enable preference cookies to view this gist.<\/p><\/div><\/div>\n<p>These are great starts, but it&#8217;s ideal to use your SSL certificate on all pages of your site and you can get the details on how to do this in our post\u00a0<a href=\"https:\/\/wpmudev.com\/blog\/ssl-https-wordpress\/\" target=\"_blank\" rel=\"noopener\">How to Use SSL and HTTPS with WordPress<\/a>.<\/p>\n<h3>3. Change Your Database Prefix<\/h3>\n<p>A prefix is placed in front of the names of all your tables in your database. By default, it&#8217;s set to <code>wp_<\/code> and while you could go along your merry way without doing anything, changing it adds another step to a hacker&#8217;s to-do list if they want to get into your site.\u00a0The more obstacles you add in a hacker&#8217;s way, the less of a chance there is of them successfully infiltrating your site.<\/p>\n<p>Changing the default prefix helps with this and if you locate the line below in <em>wp-config.php<\/em>, you can change <code>wp_<\/code> to something else such as <code>g628_<\/code> or similarly difficult prefixes that are less likely to be guessed.<\/p>\n<div class=\"gist\" data-gist=\"072388912d92b75b529b764cd08a1cc5\" data-gist-file=\"wp-config.php\"><a class=\"loading\" href=\"https:\/\/gist.github.com\/072388912d92b75b529b764cd08a1cc5.js?file=wp-config.php\">Loading gist 072388912d92b75b529b764cd08a1cc5<\/a><div class=\"gist-consent-notice\" style=\"display:none\"><p>Please <a href=\"javascript:Cookiebot.renew()\">update your cookie preferences<\/a> to enable preference cookies to view this gist.<\/p><\/div><\/div>\n<h3>4. Disable Plugin and Theme Editing<\/h3>\n<p>In every WordPress installation, you can directly edit plugins and themes through the dashboard. If a hacker were able to weasel their way into your site&#8217;s backend, they would have access to this special editor where they could then do whatever they wanted within your plugin and theme files such as add malware, viruses or spam.<\/p>\n<p>Containing a hacker once they successfully intrude should be a part of your security regimen. Sometimes, despite your best efforts, someone may still be able to hack your site so making it as difficult as possible for them to do any actual damage is important.<\/p>\n<p>On this thought train, you can disable the theme and plugin editor so hackers\u00a0won&#8217;t have access to it in case they are able to get in. This also means that your site or network&#8217;s users also won&#8217;t have access to it, but this usually isn&#8217;t a bad thing since it prevents them from making any huge errors that could potentially bring down your site.<\/p>\n<p>Add this line to disable the plugin and theme editor:<\/p>\n<div class=\"gist\" data-gist=\"9701987ffe73330cc23fbf7b9fb9e134\" data-gist-file=\"wp-config.php\"><a class=\"loading\" href=\"https:\/\/gist.github.com\/9701987ffe73330cc23fbf7b9fb9e134.js?file=wp-config.php\">Loading gist 9701987ffe73330cc23fbf7b9fb9e134<\/a><div class=\"gist-consent-notice\" style=\"display:none\"><p>Please <a href=\"javascript:Cookiebot.renew()\">update your cookie preferences<\/a> to enable preference cookies to view this gist.<\/p><\/div><\/div>\n<h3>5. Move the <em>wp-config.php<\/em> File<\/h3>\n<p>Since your <em>wp-config.php<\/em> file holds a lot of crucial information including passwords, it&#8217;s important to keep this file as safe as possible. Apart from <a href=\"https:\/\/wpmudev.com\/blog\/understanding-file-permissions\/\" target=\"_blank\" rel=\"noopener\">setting the right user permissions<\/a> for it, you can also move the file one directory above the default location without breaking your site. Moving the file also makes it more difficult for hackers to predict its location in order to be able to hack into it.<\/p>\n<p>It may be important to note that this isn&#8217;t always possible, especially if you have one of these setups:<\/p>\n<ul>\n<li>You already have a <em>wp-config.php<\/em> file located one level up since, just as in the film\u00a0<em>Highlander<\/em>, there can only be one\u00a0\u2013 in the same spot<\/li>\n<li>Your site is in a sub-directory instead of the root and you&#8217;re on shared hosting or you have many sites in their own directories since the above rule would apply in these setups<\/li>\n<\/ul>\n<p>If you&#8217;re not in one of these situations, you should be just fine to move your configurations file, but going one step further, you can move it to anywhere you want and creating a new wp-config.php file in its original place with the following contents:<\/p>\n<div class=\"gist\" data-gist=\"00210bcda7cb83e64aa586b4ce53db51\" data-gist-file=\"wp-config.php\"><a class=\"loading\" href=\"https:\/\/gist.github.com\/00210bcda7cb83e64aa586b4ce53db51.js?file=wp-config.php\">Loading gist 00210bcda7cb83e64aa586b4ce53db51<\/a><div class=\"gist-consent-notice\" style=\"display:none\"><p>Please <a href=\"javascript:Cookiebot.renew()\">update your cookie preferences<\/a> to enable preference cookies to view this gist.<\/p><\/div><\/div>\n<p>Your site should be able to function as it normally would as long as you replace <code>\/path\/to\/wp-config.php<\/code> with the actual path to your configurations file.<\/p>\n<h3>6. Enforcing the Use of FTPS<\/h3>\n<p>If your hosting has File Transfer Protocol Secure (FTPS) enabled, you can force the use of FTPS when transferring files. This would encrypt the connection between your server and the user so a hacker can&#8217;t intercept and steal files and information.<\/p>\n<p>To force the use of FTPS, add the following line:<\/p>\n<div class=\"gist\" data-gist=\"157ed0d13f2e8d6f9030f60bb58a9f5e\" data-gist-file=\"wp-config.php\"><a class=\"loading\" href=\"https:\/\/gist.github.com\/157ed0d13f2e8d6f9030f60bb58a9f5e.js?file=wp-config.php\">Loading gist 157ed0d13f2e8d6f9030f60bb58a9f5e<\/a><div class=\"gist-consent-notice\" style=\"display:none\"><p>Please <a href=\"javascript:Cookiebot.renew()\">update your cookie preferences<\/a> to enable preference cookies to view this gist.<\/p><\/div><\/div>\n<h3>7. Enforcing the Use of SFTP<\/h3>\n<p>Similar to the above tip, if your hosting has SSH File Transfer Protocol (SFTP) enabled to secure and encrypt your connection when using <a href=\"https:\/\/wpmudev.com\/blog\/terminal-command-line\/\" target=\"_blank\" rel=\"noopener\">SSH and the command line<\/a>, you can force its use for all members with the line below.<\/p>\n<div class=\"gist\" data-gist=\"f316c6bfea2175679a06ec7be086d0de\" data-gist-file=\"wp-config.php\"><a class=\"loading\" href=\"https:\/\/gist.github.com\/f316c6bfea2175679a06ec7be086d0de.js?file=wp-config.php\">Loading gist f316c6bfea2175679a06ec7be086d0de<\/a><div class=\"gist-consent-notice\" style=\"display:none\"><p>Please <a href=\"javascript:Cookiebot.renew()\">update your cookie preferences<\/a> to enable preference cookies to view this gist.<\/p><\/div><\/div>\n<h3>8. Turning Off Debugging<\/h3>\n<p>If you previously turned on debugging for your site or network, it&#8217;s a great tool for troubleshooting issues, but you shouldn&#8217;t forget to disable it once you&#8217;re finished. Leaving this option enabled can reveal important information about your site and the location of its files to hackers and anyone who visits your site and it results in an error.<\/p>\n<p>Since I often forget to do this, myself, this can serve as a reminder for you if you&#8217;re already aware of this idea.<\/p>\n<p>To turn off the debugging mode, you can switch true to false so the debugging line looks like the example below:<\/p>\n<div class=\"gist\" data-gist=\"6768458a2947d1e18318775a01fa98e5\" data-gist-file=\"wp-config.php\"><a class=\"loading\" href=\"https:\/\/gist.github.com\/6768458a2947d1e18318775a01fa98e5.js?file=wp-config.php\">Loading gist 6768458a2947d1e18318775a01fa98e5<\/a><div class=\"gist-consent-notice\" style=\"display:none\"><p>Please <a href=\"javascript:Cookiebot.renew()\">update your cookie preferences<\/a> to enable preference cookies to view this gist.<\/p><\/div><\/div>\n<p>You could also remove the line if you&#8217;re confident that you don&#8217;t need it any longer.<\/p>\n<h3>9. Disabling Front-End Error Logging<\/h3>\n<p>If you can&#8217;t make the change above because you still need to actively debug your site, you can still protect your site&#8217;s vital information by turning off the front-end errors that are displayed and including them in an error log\u00a0that&#8217;s not publicly visible or accessible.<\/p>\n<p>To disable front-end error reporting, add this line while keeping your debugging constant intact and set to <code>true<\/code>:<\/p>\n<div class=\"gist\" data-gist=\"82552b254b26e7b6d0ae8d6d06906d42\" data-gist-file=\"wp-config.php\"><a class=\"loading\" href=\"https:\/\/gist.github.com\/82552b254b26e7b6d0ae8d6d06906d42.js?file=wp-config.php\">Loading gist 82552b254b26e7b6d0ae8d6d06906d42<\/a><div class=\"gist-consent-notice\" style=\"display:none\"><p>Please <a href=\"javascript:Cookiebot.renew()\">update your cookie preferences<\/a> to enable preference cookies to view this gist.<\/p><\/div><\/div>\n<p>You can check out one of our other posts <a href=\"https:\/\/wpmudev.com\/blog\/debugging-wordpress-how-to-use-wp_debug\/\" target=\"_blank\" rel=\"noopener\">Debugging WordPress: How to Use WP_DEBUG<\/a> for more details on debugging in WordPress.<\/p>\n<h3>10. Enabling Automatic Updates<\/h3>\n<p>Keeping your site updated with the latest versions of the WordPress core along with your plugins and themes should be an important part of your security strategizing. Since updates provide security fixes for known vulnerabilities, not updating means you&#8217;re putting your site at risk by not fixing these security holes.<\/p>\n<p>You can find out more about the importance of updating for security by checking out\u00a0<a href=\"https:\/\/wpmudev.com\/blog\/update-wordpress\/\" target=\"_blank\" rel=\"noopener\">Why You Should Have the Latest Version of WordPress<\/a> and\u00a0<a href=\"https:\/\/wpmudev.com\/blog\/ultimate-guide-updating-wordpress-multisite\/\" target=\"_blank\" rel=\"noopener\">The Ultimate Guide to Updating WordPress and Multisite<\/a>.<\/p>\n<p>Since version 3.7 of WordPress, minor security releases are automatically applied to WordPress sites, but major versions for core updates aren&#8217;t, although, you can turn on automatic updates for all new versions by changing the value of the auto update constant as shown below:<\/p>\n<div class=\"gist\" data-gist=\"935c1796907765559f736925cb04eb0f\" data-gist-file=\"wp-config.php\"><a class=\"loading\" href=\"https:\/\/gist.github.com\/935c1796907765559f736925cb04eb0f.js?file=wp-config.php\">Loading gist 935c1796907765559f736925cb04eb0f<\/a><div class=\"gist-consent-notice\" style=\"display:none\"><p>Please <a href=\"javascript:Cookiebot.renew()\">update your cookie preferences<\/a> to enable preference cookies to view this gist.<\/p><\/div><\/div>\n<p>As a bonus, you can add the following line below to a <a href=\"https:\/\/codex.wordpress.org\/Must_Use_Plugins\" rel=\"noopener\" target=\"_blank\">must use plugin<\/a> in the <em>\/wp-content\/mu-plugins\/<\/em> folder to enable automatic updates for plugins:<\/p>\n<div class=\"gist\" data-gist=\"ae09ef20f4a81d27a53b12d0b7a7bcc7\" data-gist-file=\"wp-config.php\"><a class=\"loading\" href=\"https:\/\/gist.github.com\/ae09ef20f4a81d27a53b12d0b7a7bcc7.js?file=wp-config.php\">Loading gist ae09ef20f4a81d27a53b12d0b7a7bcc7<\/a><div class=\"gist-consent-notice\" style=\"display:none\"><p>Please <a href=\"javascript:Cookiebot.renew()\">update your cookie preferences<\/a> to enable preference cookies to view this gist.<\/p><\/div><\/div>\n<p>You can additionally follow that with this line to enable automatic updates for themes:<\/p>\n<div class=\"gist\" data-gist=\"41d2f9979252fecdec6d8bb28ad67480\" data-gist-file=\"wp-config.php\"><a class=\"loading\" href=\"https:\/\/gist.github.com\/41d2f9979252fecdec6d8bb28ad67480.js?file=wp-config.php\">Loading gist 41d2f9979252fecdec6d8bb28ad67480<\/a><div class=\"gist-consent-notice\" style=\"display:none\"><p>Please <a href=\"javascript:Cookiebot.renew()\">update your cookie preferences<\/a> to enable preference cookies to view this gist.<\/p><\/div><\/div>\n<p>It may be important to note that adding auto upgrades for plugins and themes usually only work if they&#8217;re from the WordPress directory. Plugins and themes found elsewhere including premium ones may not work since they aren&#8217;t required to follow the same guidelines that are necessary for submitting to the WordPress repository. This means that they may not have the code included for enabling auto updates to function properly.<\/p>\n<p>Still, there may be a chance that they do follow the requirements so it can still be useful to give it a try and enable automatic updates, especially if you use a mix of free and premium plugins.<\/p>\n<h3>Automatically Apply these Tweaks<\/h3>\n<p>These tips should get you well on your way to helping secure your site by adding to the <em>wp-config.php<\/em> file, but it can be a time-consuming task. Not to mention that while these tweaks are useful, they shouldn&#8217;t be the only steps you take toward securing your site.<\/p>\n<p>Installing a security plugin like <a href=\"https:\/\/wpmudev.com\/project\/wp-defender\/\" target=\"_blank\" rel=\"noopener\">Defender<\/a> for your single or Multisite install can automatically make these adjustments for you safely as well as automatically. Once these changes are made in a couple clicks, Defender also remains vigilant so you don&#8217;t have to, <a href=\"https:\/\/wpmudev.com\/blog\/defender\/\" target=\"_blank\" rel=\"noopener\">blocking and giving hackers the smack-down<\/a> even while you sleep.<\/p>\n<p>If you&#8217;re already a member of WPMU DEV, Defender is included in your subscription, but if you haven&#8217;t signed up yet, you can <a href=\"https:\/\/wpmudev.com\/\" target=\"_blank\" rel=\"noopener\">try it out for free<\/a>.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>There are plenty of different ways you can strengthen the security of your site, but one of the simplest things you can do is make these tweaks to your wp-config.php configuration file.<\/p>\n","protected":false},"author":54213,"featured_media":155244,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"blog_reading_time":"","wds_primary_category":0,"wds_primary_tutorials_categories":0,"footnotes":""},"categories":[263],"tags":[10810],"tutorials_categories":[],"class_list":["post-155144","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-tutorials","tag-wordpress-security"],"_links":{"self":[{"href":"https:\/\/wpmudev.com\/blog\/wp-json\/wp\/v2\/posts\/155144","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/wpmudev.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/wpmudev.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/wpmudev.com\/blog\/wp-json\/wp\/v2\/users\/54213"}],"replies":[{"embeddable":true,"href":"https:\/\/wpmudev.com\/blog\/wp-json\/wp\/v2\/comments?post=155144"}],"version-history":[{"count":18,"href":"https:\/\/wpmudev.com\/blog\/wp-json\/wp\/v2\/posts\/155144\/revisions"}],"predecessor-version":[{"id":209652,"href":"https:\/\/wpmudev.com\/blog\/wp-json\/wp\/v2\/posts\/155144\/revisions\/209652"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/wpmudev.com\/blog\/wp-json\/wp\/v2\/media\/155244"}],"wp:attachment":[{"href":"https:\/\/wpmudev.com\/blog\/wp-json\/wp\/v2\/media?parent=155144"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/wpmudev.com\/blog\/wp-json\/wp\/v2\/categories?post=155144"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/wpmudev.com\/blog\/wp-json\/wp\/v2\/tags?post=155144"},{"taxonomy":"tutorials_categories","embeddable":true,"href":"https:\/\/wpmudev.com\/blog\/wp-json\/wp\/v2\/tutorials_categories?post=155144"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}