{"id":110580,"date":"2020-09-22T12:07:54","date_gmt":"2020-09-22T17:07:54","guid":{"rendered":"https:\/\/wpengine.com\/?post_type=resource&#038;p=110580"},"modified":"2024-09-28T10:47:05","modified_gmt":"2024-09-28T15:47:05","slug":"disable-auto-update","status":"publish","type":"resource","link":"https:\/\/wpengine.com\/case-studies\/resources\/disable-auto-update\/","title":{"rendered":"How to Disable Automatic WordPress Updates"},"content":{"rendered":"\n<p>Have you ever gone to check on your WordPress site, only to find your WordPress theme broken, plugin functionality crippled, or major features moved and changed? If so, you may have been surprised to find that the WordPress auto update was to blame.<\/p>\n\n\n\n<p>A WordPress user can avoid this problem by disabling auto updates in WordPress. This gives you more control over your site, enabling you to test updates for compatibility and avoid potentially unwanted feature changes. Of course, it also means you\u2019ll need to manually update WordPress to the latest version in order to patch potential security holes.<\/p>\n\n\n\n<p>In this article, we\u2019ll explain why you might want to disable automatic WordPress updates. Then we\u2019ll show you how to do just that, using code or a simple WordPress plugin. <\/p>\n\n\n\n<p>Let\u2019s dive right in!<\/p>\n\n\n\n\n\n<h2 class=\"wp-block-heading\">Why Disable Automatic WordPress Updates?<\/h2>\n\n\n\n<p>Generally speaking, <a href=\"https:\/\/wpengine.com\/support\/wordpress-updates\/\" target=\"_blank\" rel=\"noreferrer noopener\">automatic updates in WordPress<\/a> are a good thing, and we\u2019d recommend that most users leave them enabled, especially for a security update. However, there are some cases when disabling some or all automatic updates may be beneficial to a WordPress user.&nbsp;<\/p>\n\n\n\n<p>The main reason to disable a WordPress automatic updates is that they can sometimes break a website. Most of the time, updates are thoroughly tested, and there won\u2019t be any problems. This is especially true with WordPress core, as well as many popular themes updates and plugins.<\/p>\n\n\n\n<p>With that being said, developers can\u2019t possibly test their software with every possible combination of plugins and themes. If you have tools installed that are built for a certain WordPress version of WordPress or rely on other plugins, a WordPress update can cause compatibility issues with the others. In rare cases, this could cause a chain reaction that brings down an entire website or cripples mission-critical functionality.&nbsp;<\/p>\n\n\n\n<p>Another potential issue with WordPress auto updates is unwanted new feature changes. If you remember the launch of <a href=\"https:\/\/wpengine.com\/resources\/wordpress-gutenberg-editor\/\" target=\"_blank\" rel=\"noreferrer noopener\">the WordPress Block Editor<\/a>, you probably also remember the controversy surrounding it. Despite plenty of advance notice, many users experienced disruptions to their workflows because they weren\u2019t prepared.<\/p>\n\n\n\n<p>For these reasons, if your site is a vital part of your business, the usual <a href=\"https:\/\/wpengine.com\/resources\/developer-best-practices\/\" target=\"_blank\" rel=\"noreferrer noopener\">best practice<\/a> is to review and test updates first before applying them to your live site.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Pros and Cons of Disabling WordPress Updates<\/h2>\n\n\n\n<p>Before moving forward, however, it\u2019s important to know that there are both advantages and disadvantages when you disable an automatic update. Let\u2019s explore the most important considerations in more detail.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Pros of Disabling Updates<\/h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li>You have more control over changes to your website.<\/li>\n\n\n\n<li>You can make sure that all your plugins and themes work with new updates, avoiding site errors and broken functionality.<\/li>\n\n\n\n<li>You don\u2019t have to worry about theme and automatic plugin updates overwriting any manual changes you\u2019ve made.<\/li>\n<\/ul>\n\n\n\n<h3 class=\"wp-block-heading\">Cons of Disabling Updates<\/h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li>You may miss important security updates, leaving your website vulnerable.<\/li>\n\n\n\n<li>Reviewing and applying updates manually <a href=\"https:\/\/wpengine.com\/resources\/putting-an-end-to-tedious-plugin-maintenance\/\" target=\"_blank\" rel=\"noreferrer noopener\">can be time-consuming<\/a>, especially if you have multiple sites to keep updated.<\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\">How to Disable Automatic Updates: No Plugin<\/h2>\n\n\n\n<p>You can turn off automatic updates for WordPress core files, plugins, and themes simply by adding a few code snippets to your files. Here\u2019s how to get started.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Step 1: Add Code to Your <em>wp-config <\/em>File<\/h3>\n\n\n\n<p>To turn off automatic updates for WordPress core, you just have to add the following code to your <em>wp-config.php<\/em> file:<\/p>\n\n\n\n<p><code>define( 'WP_AUTO_UPDATE_CORE', false );<\/code><\/p>\n\n\n\n<p>To access the file, you\u2019ll need to either use a <a href=\"https:\/\/wpengine.com\/support\/sftp\/\" target=\"_blank\" rel=\"noreferrer noopener\">File Transfer Protocol (FTP)<\/a> solution (we recommend the free <a href=\"https:\/\/filezilla-project.org\/\" target=\"_blank\" rel=\"noreferrer noopener\">FileZilla client<\/a>) or the file manager in your web host\u2019s cPanel.&nbsp;<\/p>\n\n\n\n<p>Once you have access to your site\u2019s files, you can find <em>wp-config.php <\/em>by navigating to <em>app &gt; public<\/em>. Open up the file and add the code snippet towards the end, right above the line that says \/* That&#8217;s all, stop editing! Happy publishing. *\/:<\/p>\n\n\n\n<figure class=\"wp-block-image aligncenter\"><img decoding=\"async\" src=\"https:\/\/lh5.googleusercontent.com\/aQ1Rrcow7JFBawV8XCa931JL3PK9KPYV788EWaHBq-V9BLnWyM8bLDJcMopyyzOtnaQE-i3e39wJxli54Xu7fpUqujHhXraOWAqC33zqf5Bc2suOVWBetkReQ79FcoT3PHnVZ1jE\" alt=\"Image of how to add code to your wp-config file. How to disable WordPress auto update\" \/><\/figure>\n\n\n\n<p>Now WordPress will no longer install updates automatically. This only applies to the WordPress core updates, however. If you want to disable updates for plugins and themes as well, proceed to the next step.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Step 2: Disable Automatic Updates by Adding Filter Code<\/h3>\n\n\n\n<p>To stop your plugins and themes from updating automatically, you need to add a line of code to your theme\u2019s <em>functions.php<\/em> file. You don\u2019t need a file browser or FTP client for this one\u2014you can access this file by heading to your WordPress dashboard and navigating to <em>Appearance &gt; Theme Editor:<\/em><\/p>\n\n\n\n<figure class=\"wp-block-image aligncenter\"><img decoding=\"async\" src=\"https:\/\/lh5.googleusercontent.com\/i2LEWrMB8I14jbFPcYTLeK4lmqRjsjcYNEKRCTz3HeR9aywZBe8GQE6-Gjcolo0mVloixw8nXIIlIGOoHJUS_ae2GsJOoG-jSd_mBIXVvZW9cz6iVZau2WfB5FLrYcjkWJaSxuIF\" alt=\"image showing how to disable automatic updates by adding filter code in WordPress edit themes. How to disable WordPress auto update\" \/><\/figure>\n\n\n\n<p>Select your theme and open up <em>function.php <\/em>from the list on the right. Then, to disable automatic plugin updates, add the following code to the bottom of the file:<\/p>\n\n\n\n<p><code>add_filter( 'auto_update_plugin', '__return_false' );<\/code><\/p>\n\n\n\n<p>To turn off updates for themes, use this code:<\/p>\n\n\n\n<p><code>add_filter( 'auto_update_theme', '__return_false' );<\/code><\/p>\n\n\n\n<p>If you want to turn them off for both your theme and any plugins you\u2019re using, simply add both lines:<\/p>\n\n\n\n<figure class=\"wp-block-image aligncenter\"><img decoding=\"async\" src=\"https:\/\/lh4.googleusercontent.com\/NzUjt-Zi9LBmWj4j8SJZBxA1-HahoO39g2zxT2nzpZcwdOWIj-9yi0OHLN5Ri_-j5oeVZ03WD5G1_9t5Qynmz_wpqAzkrUD05lOm5ga8DgytbNV6IvYuGHToxgGHwNBb_ihjpGU_\" alt=\"Image showing how to turn off updates for a theme you're using in WordPress with code. How to disable WordPress auto update\" \/><\/figure>\n\n\n\n<p>Now you have automatic updates turned off for WordPress core, themes, and plugins. You can mix and match these in any combination you like, in order to create an update solution that works for you.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">How to Disable Automatic Updates: With a Plugin<\/h2>\n\n\n\n<p>WordPress is nothing if not flexible. So if you prefer to use a plugin to disable updates instead of code, you\u2019re in luck. All you need to do is install and activate an update manager plugin and configure your preferences.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Step 1: Download an Update Manager Plugin<\/h3>\n\n\n\n<p>There are a number of WordPress plugins available to help you manage updates, but we recommend <a href=\"https:\/\/wordpress.org\/plugins\/stops-core-theme-and-plugin-updates\/\" target=\"_blank\" rel=\"noreferrer noopener\">Easy Updates Manager<\/a>:<\/p>\n\n\n\n<figure class=\"wp-block-image aligncenter\"><img decoding=\"async\" src=\"https:\/\/lh5.googleusercontent.com\/X3_BdB2QyfWz9HI7NMYcykUcjIN9ErfDkidteXqRPjX3qcvdhR82XISb611Ie_ZqlmvcW_YwJ1TiwyT7MJSwhMIL4VWM3QBMqyIWsaw2coV7HKcxhBoA7qs2rkfHisfrCQaIgSDK\" alt=\"Image of Update Manager Plugin logo for WordPress. How to disable WordPress auto update\" \/><\/figure>\n\n\n\n<p>This solution enables you to easily manage updates for your entire WordPress site, including core files, themes, and plugins. It also works with <a href=\"https:\/\/wpengine.com\/support\/what-is-wordpress-multisite\/\" target=\"_blank\" rel=\"noreferrer noopener\">WordPress multisite installations<\/a>.<\/p>\n\n\n\n<p>To install the plugin, head to your WordPress dashboard and navigate to <em>Plugins &gt; Add New.<\/em> Search for \u201cEasy Updates Manager,\u201d and it should be the first option. Click on <em>Install<\/em> and then <em>Activate.<\/em><\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Step 2: Configure Your Update Options<\/h3>\n\n\n\n<p>Easy Updates Manager offers incredibly fine-grained control over the updates on your site. To configure its options, head to your WordPress dashboard and click the new <em>Updates Options<\/em> link in the sidebar:<\/p>\n\n\n\n<figure class=\"wp-block-image aligncenter\"><img decoding=\"async\" src=\"https:\/\/lh3.googleusercontent.com\/z9lT8fUZME7zHG9FKG57H0vT2_T3G1XUC976-zSCpd_AQ4A9kIM2Ix-IZXCxmusE0crEbK0Rp0YM6zfuTJ4fbNfI24fB2CpaF7yyylT8qTxzyBb2scKOkw2dJlc2jti-0EwmNkZa\" alt=\"Image showing where to configure your update options in WordPress menu. How to disable WordPress auto update\" \/><\/figure>\n\n\n\n<p>This will take you to the Easy Updates Manager settings. If you want to turn off all updates, just toggle the \u201cDisable all updates\u201d option:<\/p>\n\n\n\n<figure class=\"wp-block-image aligncenter\"><img decoding=\"async\" src=\"https:\/\/lh5.googleusercontent.com\/X81Sj4IDP-jbMb4HWXTRUeJhWAmi6E7d4Lk0AfMSthAFXXPSkYhjEVukCZjetm4PSZy8_MJTU1sBTOuZ9VkOoCKi4dNNZaJAk4KEHkcRVrBrTKpE3-DOS4rsT9V0iqAGZyXuP6Qp\" alt=\"Image of how to toggle off &quot;disable all updates&quot; in Easy Updates Manager. How to disable WordPress auto update\" \/><\/figure>\n\n\n\n<p>You can also toggle individual categories, like plugins, themes, WordPress core, and translation. If that\u2019s still not enough control, you can dig into each category and set preferences for every WordPress theme and plugin individually:<\/p>\n\n\n\n<figure class=\"wp-block-image aligncenter\"><img decoding=\"async\" src=\"https:\/\/lh4.googleusercontent.com\/fwjZsUD7pk_4V-jis2FEwWVT3CfkurWPMlhfeF0mhzavCBBgTgQdwHIWGm1lL47TlWQ7heT3Dk1kFUtJqrZZ7Nj3a1M2Kzxkjv0xtXQLNKgjfbrht-knOgWdaSaP71zKlnq2PXN_\" alt=\"Image of how to toggle individual categories like plugins, themes, WordPress core, and translation. How to disable WordPress auto update\" \/><\/figure>\n\n\n\n<p>There\u2019s no need to save these changes when you\u2019re done. Just set your preferences however you want them, and they\u2019ll take effect automatically.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Keep Your Site in Shape with WP Engine<\/h2>\n\n\n\n<p>If you need more control over your site, disabling WordPress installation for new updates can give it to you. This also enables you to vet a plugin update before installing the new version and updating WordPress, to ensure compatibility and maximize uptime on your site.<\/p>\n\n\n\n<p>If you need more ways to keep your website in shape, <a href=\"https:\/\/wpengine.com\/plans\/\" target=\"_blank\" rel=\"noreferrer noopener\">WP Engine can help<\/a>. We offer the best <a href=\"https:\/\/wpengine.com\/wordpress-hosting\/\" target=\"_blank\" rel=\"noreferrer noopener\">hosting for WordPress<\/a> and the best <a href=\"https:\/\/wpengine.com\/resources\/\" target=\"_blank\" rel=\"noreferrer noopener\">resources<\/a> (in addition to providing 24\/7 <a href=\"https:\/\/wpengine.com\/wordpress-support\/\">WordPress help<\/a> and support services) to keep your site running at peak performance!<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Have you ever gone to check on your WordPress site, only to find your WordPress theme broken, plugin functionality crippled, or major features moved and changed? If so, you may have been surprised to find that the WordPress auto update was to blame. A WordPress user can avoid this problem by disabling auto updates in<span class=\"tile__ellipses\">&hellip;<\/span><span class=\"tile__ellipses--animated\"><\/span><\/p>\n","protected":false},"author":1,"featured_media":110693,"template":"","resource-topic":[901],"resource-role":[896,903,899],"resource-type":[916],"class_list":["post-110580","resource","type-resource","status-publish","has-post-thumbnail","hentry"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v20.9 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>How To Disable WordPress Auto Update | WP Engine\u00ae<\/title>\n<meta name=\"description\" content=\"Want to learn how to disable wordpress automatic updates? WP Engine can help you disable these updates quickly and easily \u2014 learn how today!\" \/>\n<meta name=\"robots\" content=\"noindex, follow\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How To Disable WordPress Auto Update | WP Engine\u00ae\" \/>\n<meta property=\"og:description\" content=\"Want to learn how to disable wordpress automatic updates? WP Engine can help you disable these updates quickly and easily \u2014 learn how today!\" \/>\n<meta property=\"og:url\" content=\"https:\/\/wpengine.com\/case-studies\/resources\/disable-auto-update\/\" \/>\n<meta property=\"og:site_name\" content=\"WP Engine\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/wpengine\" \/>\n<meta property=\"article:modified_time\" content=\"2024-09-28T15:47:05+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/wpengine.com\/case-studies\/wp-content\/uploads\/2020\/09\/shutterstock_534008512.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1100\" \/>\n\t<meta property=\"og:image:height\" content=\"500\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:site\" content=\"@wpengine\" \/>\n<meta name=\"twitter:label1\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data1\" content=\"7 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/wpengine.com\/case-studies\/resources\/disable-auto-update\/\",\"url\":\"https:\/\/wpengine.com\/case-studies\/resources\/disable-auto-update\/\",\"name\":\"How To Disable WordPress Auto Update | WP Engine\u00ae\",\"isPartOf\":{\"@id\":\"https:\/\/wpengine.com\/case-studies\/#website\"},\"datePublished\":\"2020-09-22T17:07:54+00:00\",\"dateModified\":\"2024-09-28T15:47:05+00:00\",\"description\":\"Want to learn how to disable wordpress automatic updates? WP Engine can help you disable these updates quickly and easily \u2014 learn how today!\",\"breadcrumb\":{\"@id\":\"https:\/\/wpengine.com\/case-studies\/resources\/disable-auto-update\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/wpengine.com\/case-studies\/resources\/disable-auto-update\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/wpengine.com\/case-studies\/resources\/disable-auto-update\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/wpengine.com\/case-studies\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Resources\",\"item\":\"https:\/\/wpengine.com\/case-studies\/resources\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"How to Disable Automatic WordPress Updates\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/wpengine.com\/case-studies\/#website\",\"url\":\"https:\/\/wpengine.com\/case-studies\/\",\"name\":\"WP Engine\",\"description\":\"Managed Hosting for WordPress\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/wpengine.com\/case-studies\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/wpengine.com\/case-studies\/#\/schema\/person\/f5301455463371a10d1fc290e9ad0085\",\"name\":\"WP Engine\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/wpengine.com\/case-studies\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/d8770fe9625ca7c4601f13d9d0ab86565a6dac8cd6a77bfe2ada6d83c6837870?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/d8770fe9625ca7c4601f13d9d0ab86565a6dac8cd6a77bfe2ada6d83c6837870?s=96&d=mm&r=g\",\"caption\":\"WP Engine\"},\"sameAs\":[\"https:\/\/wpengine.com\"]}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How To Disable WordPress Auto Update | WP Engine\u00ae","description":"Want to learn how to disable wordpress automatic updates? WP Engine can help you disable these updates quickly and easily \u2014 learn how today!","robots":{"index":"noindex","follow":"follow"},"og_locale":"en_US","og_type":"article","og_title":"How To Disable WordPress Auto Update | WP Engine\u00ae","og_description":"Want to learn how to disable wordpress automatic updates? WP Engine can help you disable these updates quickly and easily \u2014 learn how today!","og_url":"https:\/\/wpengine.com\/case-studies\/resources\/disable-auto-update\/","og_site_name":"WP Engine","article_publisher":"https:\/\/www.facebook.com\/wpengine","article_modified_time":"2024-09-28T15:47:05+00:00","og_image":[{"width":1100,"height":500,"url":"https:\/\/wpengine.com\/case-studies\/wp-content\/uploads\/2020\/09\/shutterstock_534008512.jpg","type":"image\/jpeg"}],"twitter_card":"summary_large_image","twitter_site":"@wpengine","twitter_misc":{"Est. reading time":"7 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/wpengine.com\/case-studies\/resources\/disable-auto-update\/","url":"https:\/\/wpengine.com\/case-studies\/resources\/disable-auto-update\/","name":"How To Disable WordPress Auto Update | WP Engine\u00ae","isPartOf":{"@id":"https:\/\/wpengine.com\/case-studies\/#website"},"datePublished":"2020-09-22T17:07:54+00:00","dateModified":"2024-09-28T15:47:05+00:00","description":"Want to learn how to disable wordpress automatic updates? WP Engine can help you disable these updates quickly and easily \u2014 learn how today!","breadcrumb":{"@id":"https:\/\/wpengine.com\/case-studies\/resources\/disable-auto-update\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/wpengine.com\/case-studies\/resources\/disable-auto-update\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/wpengine.com\/case-studies\/resources\/disable-auto-update\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/wpengine.com\/case-studies\/"},{"@type":"ListItem","position":2,"name":"Resources","item":"https:\/\/wpengine.com\/case-studies\/resources\/"},{"@type":"ListItem","position":3,"name":"How to Disable Automatic WordPress Updates"}]},{"@type":"WebSite","@id":"https:\/\/wpengine.com\/case-studies\/#website","url":"https:\/\/wpengine.com\/case-studies\/","name":"WP Engine","description":"Managed Hosting for WordPress","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/wpengine.com\/case-studies\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/wpengine.com\/case-studies\/#\/schema\/person\/f5301455463371a10d1fc290e9ad0085","name":"WP Engine","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/wpengine.com\/case-studies\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/d8770fe9625ca7c4601f13d9d0ab86565a6dac8cd6a77bfe2ada6d83c6837870?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/d8770fe9625ca7c4601f13d9d0ab86565a6dac8cd6a77bfe2ada6d83c6837870?s=96&d=mm&r=g","caption":"WP Engine"},"sameAs":["https:\/\/wpengine.com"]}]}},"acf":[],"grid_image_url":"https:\/\/wpengine.com\/case-studies\/wp-content\/uploads\/2020\/09\/shutterstock_534008512-1.jpg","media-type":{"term_id":916,"name":"Article","slug":"article"},"role":"<strong>Roles:<\/strong> Developer, Marketer, Site Owner","topic":"<strong>Topics:<\/strong> WordPress","_links":{"self":[{"href":"https:\/\/wpengine.com\/case-studies\/wp-json\/wp\/v2\/resource\/110580","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/wpengine.com\/case-studies\/wp-json\/wp\/v2\/resource"}],"about":[{"href":"https:\/\/wpengine.com\/case-studies\/wp-json\/wp\/v2\/types\/resource"}],"author":[{"embeddable":true,"href":"https:\/\/wpengine.com\/case-studies\/wp-json\/wp\/v2\/users\/1"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/wpengine.com\/case-studies\/wp-json\/wp\/v2\/media\/110693"}],"wp:attachment":[{"href":"https:\/\/wpengine.com\/case-studies\/wp-json\/wp\/v2\/media?parent=110580"}],"wp:term":[{"taxonomy":"resource-topic","embeddable":true,"href":"https:\/\/wpengine.com\/case-studies\/wp-json\/wp\/v2\/resource-topic?post=110580"},{"taxonomy":"resource-role","embeddable":true,"href":"https:\/\/wpengine.com\/case-studies\/wp-json\/wp\/v2\/resource-role?post=110580"},{"taxonomy":"resource-type","embeddable":true,"href":"https:\/\/wpengine.com\/case-studies\/wp-json\/wp\/v2\/resource-type?post=110580"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}