{"id":30577,"date":"2018-11-18T16:04:27","date_gmt":"2018-11-18T22:04:27","guid":{"rendered":"https:\/\/getflywheel.com\/?p=30577"},"modified":"2025-11-25T10:00:31","modified_gmt":"2025-11-25T16:00:31","slug":"how-to-improve-a-wordpress-sites-performance-with-minification","status":"publish","type":"resource","link":"https:\/\/wpengine.com\/case-studies\/resources\/how-to-improve-a-wordpress-sites-performance-with-minification\/","title":{"rendered":"How to Improve a WordPress Site&#8217;s Performance with Minification"},"content":{"rendered":"\n<p>Site speed remains a perennial concern for pretty much all site owners. While there are several ways you can improve your site\u2019s speed, there\u2019s one often-overlooked (yet highly effective) technique to consider\u2014minification.<\/p>\n\n\n\n<p>In simple terms, minification optimizes your site\u2019s code to make it smaller in size and, therefore, more efficient to run. While this can seem like a small concern, it\u2019s actually surprisingly effective.<\/p>\n\n\n\n<p>In this article, we\u2019ll introduce you to the concept of minification and how it works. We\u2019ll also show you several ways you can utilize this method yourself, without getting into the code. Let\u2019s get started!<\/p>\n\n\n\n\n\n<h2 class=\"wp-block-heading\">An Introduction to Minification (and How it can Help You)<\/h2>\n\n\n\n<p>You may already be aware of several ways you can optimize your site speed. Today, we&#8217;ll focus on the specifics of minification.<\/p>\n\n\n\n<p>One of the potential reasons behind long load times is inefficiently written code. Most site owners rarely (if ever) need to code anything manually nowadays, so you might not even be able to tell if your code is causing your site to get sluggish. However, by using a process known as <a href=\"https:\/\/levelup.gitconnected.com\/minification-as-a-method-of-website-optimization-is-it-effective-and-is-it-recommended-ddd7638cb04\" target=\"_blank\" rel=\"noreferrer noopener\">minification<\/a>, you can check for yourself.<\/p>\n\n\n\n<p>If you\u2019re no coder, this might seem intimidating, but don\u2019t worry. Minification is actually a straightforward process that simply involves optimizing CSS, HTML, and JavaScript code. We&#8217;ll show you how you can achieve this without needing any coding skills further below. However, before we get there, let\u2019s see how minification works in practice, using the following snippet of CSS:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>h1 {\n    background-color: blue;\n}\n\nh2 {\n    background-color: red;\n}\n\np {\n    background-color: black;\n}<\/code><\/pre>\n\n\n\n<p>Even having a passing familiarity with CSS, this is pretty easy to decipher. It simply specifies which style should be assigned to different elements on a page. This is because the code is written to be readable to the human eye. To this end, line breaks and extra spaces are used to make each part of the code clearly defined and easier to scan.<\/p>\n\n\n\n<p>However, this isn\u2019t actually something a computer needs to understand to run the code. In fact, the additional characters make the code \u201cheavier,\u201d and therefore, it takes longer for a computer to read and execute. As such, you can think of minification as the process that turns human-friendly code into machine-friendly code.<\/p>\n\n\n\n<p>If you were to minify this code, it would look like this instead:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>h1{background-color:blue}h2{background-color:red}p{background-color:black}<\/code><\/pre>\n\n\n\n<p>This code creates the exact same functionality as the one above but with all the unnecessary parts taken out. While it might not seem like a major difference, the minified code is actually 36% lighter than the original. If you imagine this same principle applied to all code on your page, you can probably see how effective this could be in the long run.<\/p>\n\n\n\n<p>So, how do you actually do it? There are a few methods at your disposal, and we\u2019ll be looking at them throughout this article. First, let\u2019s see how you can minify code manually.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">How to Minify Code Manually<\/h2>\n\n\n\n<p>One way you can minify code is doing it yourself. This is particularly useful if you\u2019re writing your own code, such as when creating a theme or plugin. However, going through your code with a fine-tooth comb can be taxing, if not impossible, depending on the amount.<\/p>\n\n\n\n<p>Fortunately, there are plenty of tools to help you generate minified code in a matter of seconds. One such example is <a href=\"https:\/\/www.minifier.org\/\" target=\"_blank\" rel=\"noopener noreferrer\">Minify<\/a>, which works with both CSS and JavaScript:<\/p>\n\n\n\n<figure class=\"wp-block-image aligncenter\"><img decoding=\"async\" src=\"https:\/\/getflywheel-images.s3.us-east-2.amazonaws.com\/uploads\/2018\/11\/image5-1024x237.png\" alt=\"The Minify tool\" class=\"wp-image-30578\" \/><\/figure>\n\n\n\n<p>Simply paste the code you want to compress into the text box, click Minify, and the code will instantly be returned in its new form. You\u2019ll even see a summary of just how much lighter the new version is compared to the original:<\/p>\n\n\n\n<figure class=\"wp-block-image aligncenter\"><img decoding=\"async\" src=\"https:\/\/getflywheel-images.s3.us-east-2.amazonaws.com\/uploads\/2018\/11\/image6-1024x388.png\" alt=\"An example of the Minify tool with code entered and minified\" class=\"wp-image-30579\" \/><\/figure>\n\n\n\n<p>When you need to minify HTML code, we recommend <a href=\"https:\/\/kangax.github.io\/html-minifier\/\" target=\"_blank\" rel=\"noopener noreferrer\">HTML Minifier<\/a> for the job:<\/p>\n\n\n\n<figure class=\"wp-block-image aligncenter\"><img decoding=\"async\" src=\"https:\/\/getflywheel-images.s3.us-east-2.amazonaws.com\/uploads\/2018\/11\/image2-1024x374.png\" alt=\"HTML Minifier\" class=\"wp-image-30580\" \/><\/figure>\n\n\n\n<p>This tool is particularly interesting because it provides plenty of options regarding how the code should be compressed. You can use the settings on the right to tailor the final output to your liking.<\/p>\n\n\n\n<p>While minifying code manually can certainly be useful, most of the time you\u2019ll likely want to automate the process. Next up, we\u2019ll look at how you can do exactly that.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">3 WordPress Plugins to Help you Minify Code Automatically<\/h2>\n\n\n\n<p>By far the easiest way to implement minification is by using a <a href=\"https:\/\/wordpress.org\/plugins\/\" target=\"_blank\" rel=\"noreferrer noopener\">WordPress plugin<\/a> to do the job for you. Such a plugin will automatically minify your code as soon as it\u2019s called on.<\/p>\n\n\n\n<p>This means you can minify your code without having to look at it yourself. With this in mind, let\u2019s look at some of the best minification plugins!<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">1. <a href=\"https:\/\/wordpress.org\/plugins\/autoptimize\/\" target=\"_blank\" rel=\"noopener noreferrer\">Autoptimize<\/a><\/h2>\n\n\n\n<figure class=\"wp-block-image aligncenter\"><img decoding=\"async\" src=\"https:\/\/getflywheel.com\/layout\/wp-content\/uploads\/2019\/03\/image4.png\" alt=\"feature image from Autoptimize minification plugin in the WordPress Plugin Directory\" class=\"wp-image-33478\" \/><\/figure>\n\n\n\n<p>If you were worried that minification would be a complex process, <a href=\"https:\/\/wordpress.org\/plugins\/autoptimize\/\" target=\"_blank\" rel=\"noopener noreferrer\">Autoptimize<\/a> is the perfect counterpoint. This is a \u201cset-and-forget\u201d solution that will automatically minify all your site\u2019s scripts with no input required on your part. You simply install and activate the plugin, and it takes care of the rest. However, if you do wish to get into the technical side of things, the plugin also offers several advanced configuration options.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Key features<\/h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Simple to use, with no configuration required.<\/li>\n\n\n\n<li>Automatically minifies and compresses all scripts on your site.<\/li>\n\n\n\n<li>Moves all styles to the site header for optimal performance.<\/li>\n<\/ul>\n\n\n\n<p><strong>Pricing:<\/strong> The plugin is free and Autoptimize also offers <a href=\"https:\/\/autoptimize.com\/\" target=\"_blank\" rel=\"noopener noreferrer\">a premium tier<\/a>.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">2. <a href=\"https:\/\/wordpress.org\/plugins\/fast-velocity-minify\/\" target=\"_blank\" rel=\"noopener noreferrer\">Fast Velocity Minify<\/a><\/h2>\n\n\n\n<figure class=\"wp-block-image aligncenter\"><img decoding=\"async\" src=\"https:\/\/getflywheel-images.s3.us-east-2.amazonaws.com\/uploads\/2018\/11\/image3.png\" alt=\"feature image from Fast Velocity Minify minification plugin in the WordPress Plugin Directory\" class=\"wp-image-30582\" \/><\/figure>\n\n\n\n<p>A running theme for all these plugins is simplicity. As with the previous offering, <a href=\"https:\/\/wordpress.org\/plugins\/fast-velocity-minify\/\" target=\"_blank\" rel=\"noopener noreferrer\">Fast Velocity Minify<\/a> works right out of the box. By compressing your codes and scripts into the minimum number of files, the plugin ensures that your CSS and JavaScript are delivered as efficiently as possible. It also includes a number of configuration settings, including optional HTML minification.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Key features<\/h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Minifies script files to reduce the number of HTTP requests.<\/li>\n\n\n\n<li>Offers plug-and-play functionality with the default settings.<\/li>\n\n\n\n<li>Merges and optimizes Google Fonts.<\/li>\n<\/ul>\n\n\n\n<p><strong>Pricing:<\/strong> The plugin is entirely free, with no premium plan required.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">3. <a href=\"https:\/\/wordpress.org\/plugins\/merge-minify-refresh\/\" target=\"_blank\" rel=\"noopener noreferrer\">Merge + Minify + Refresh<\/a><\/h2>\n\n\n\n<figure class=\"wp-block-image aligncenter\"><img decoding=\"async\" src=\"https:\/\/getflywheel-images.s3.us-east-2.amazonaws.com\/uploads\/2018\/11\/image1.png\" alt=\"feature image from the Merge + Minify + Refresh minification plugin in the WordPress plugin directory\" class=\"wp-image-30583\" \/><\/figure>\n\n\n\n<p><a href=\"https:\/\/wordpress.org\/plugins\/merge-minify-refresh\/\" target=\"_blank\" rel=\"noopener noreferrer\">Merge + Minify + Refresh<\/a> is yet another minification plugin that begins working out of the box. While its features are largely similar to Autoptimize, it\u2019s a particularly lightweight alternative. Due to the way the minification process works, the plugin provides minimal slowdown, and doesn\u2019t require you to manually clear your cache (unlike other solutions).<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Key features<\/h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Minifies and combines your script files automatically.<\/li>\n\n\n\n<li>Uses <a href=\"https:\/\/developer.wordpress.org\/reference\/functions\/wp_cron\/\" target=\"_blank\" rel=\"noreferrer noopener\">wp-cron<\/a> to minimize slowdown during minification.<\/li>\n\n\n\n<li>Compatible with WordPress Multisite setups.<\/li>\n<\/ul>\n\n\n\n<p><strong>Pricing:<\/strong> Merge + Minify + Refresh is free to download and use, with no premium plan available.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Use Minification to Maximize Performance!<\/h2>\n\n\n\n<p>When it comes to optimizing your site, it\u2019s important to use all methods at your disposal. One of these is minification, which enables you to compress your code to make it more efficient without affecting its functionality.<\/p>\n\n\n\n<p>In this article, we\u2019ve discussed how you can utilize minification on your own site with one of these recommended plugins:<\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li><a href=\"https:\/\/wordpress.org\/plugins\/autoptimize\/\" target=\"_blank\" rel=\"noopener noreferrer\">Autoptimize<\/a>. Powerful yet simple, with additional settings for experienced users.<\/li>\n\n\n\n<li><a href=\"https:\/\/wordpress.org\/plugins\/fast-velocity-minify\/\" target=\"_blank\" rel=\"noopener noreferrer\">Fast Velocity Minify<\/a>. A solid option that\u2019s great for both beginners and developers.<\/li>\n\n\n\n<li><a href=\"https:\/\/wordpress.org\/plugins\/merge-minify-refresh\/\" target=\"_blank\" rel=\"noopener noreferrer\">Merge + Minify + Refresh<\/a>. Fast and reliable, which helps to ensure good performance at all times.<\/li>\n<\/ol>\n\n\n\n<p class=\"has-text-align-center\"><strong>Want to learn more? Find tons of helpful content like this in <a href=\"https:\/\/wpengine.com\/resources\/\" target=\"_blank\" rel=\"noreferrer noopener\">WP Engine&#8217;s Resource Center<\/a> or <a href=\"\/contact\/\">speak to a WP Engine representative now<\/a> for answers to your questions. <\/strong><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Site speed remains a perennial concern for pretty much all site owners. While there are several ways you can improve your site\u2019s speed, there\u2019s one often-overlooked (yet highly effective) technique to consider\u2014minification. In simple terms, minification optimizes your site\u2019s code to make it smaller in size and, therefore, more efficient to run. While this can<span class=\"tile__ellipses\">&hellip;<\/span><span class=\"tile__ellipses--animated\"><\/span><\/p>\n","protected":false},"author":1,"featured_media":144571,"template":"","resource-topic":[912,901],"resource-role":[896,899],"resource-type":[916],"class_list":["post-30577","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 Improve a WordPress Site&#039;s Performance with Minification<\/title>\n<meta name=\"description\" content=\"This guide will help you learn how to use minification to optimize your site code and make it smaller and more efficient to run.\" \/>\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 Improve a WordPress Site&#039;s Performance with Minification\" \/>\n<meta property=\"og:description\" content=\"This guide will help you learn how to use minification to optimize your site code and make it smaller and more efficient to run.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/wpengine.com\/case-studies\/resources\/how-to-improve-a-wordpress-sites-performance-with-minification\/\" \/>\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=\"2025-11-25T16:00:31+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/wpengine.com\/case-studies\/wp-content\/uploads\/2018\/11\/improve-site-performance_1200x627.png\" \/>\n\t<meta property=\"og:image:width\" content=\"1200\" \/>\n\t<meta property=\"og:image:height\" content=\"627\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:title\" content=\"How to Improve a WordPress Site&#039;s Performance with Minification\" \/>\n<meta name=\"twitter:description\" content=\"This guide will help you learn how to use minification to optimize your site code and make it smaller and more efficient to run.\" \/>\n<meta name=\"twitter:image\" content=\"https:\/\/wpengine.com\/case-studies\/wp-content\/uploads\/2018\/11\/improve-site-performance_1100x500.png\" \/>\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\/how-to-improve-a-wordpress-sites-performance-with-minification\/\",\"url\":\"https:\/\/wpengine.com\/case-studies\/resources\/how-to-improve-a-wordpress-sites-performance-with-minification\/\",\"name\":\"How to Improve a WordPress Site's Performance with Minification\",\"isPartOf\":{\"@id\":\"https:\/\/wpengine.com\/case-studies\/#website\"},\"datePublished\":\"2018-11-18T22:04:27+00:00\",\"dateModified\":\"2025-11-25T16:00:31+00:00\",\"description\":\"This guide will help you learn how to use minification to optimize your site code and make it smaller and more efficient to run.\",\"breadcrumb\":{\"@id\":\"https:\/\/wpengine.com\/case-studies\/resources\/how-to-improve-a-wordpress-sites-performance-with-minification\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/wpengine.com\/case-studies\/resources\/how-to-improve-a-wordpress-sites-performance-with-minification\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/wpengine.com\/case-studies\/resources\/how-to-improve-a-wordpress-sites-performance-with-minification\/#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 Improve a WordPress Site&#8217;s Performance with Minification\"}]},{\"@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 Improve a WordPress Site's Performance with Minification","description":"This guide will help you learn how to use minification to optimize your site code and make it smaller and more efficient to run.","robots":{"index":"noindex","follow":"follow"},"og_locale":"en_US","og_type":"article","og_title":"How to Improve a WordPress Site's Performance with Minification","og_description":"This guide will help you learn how to use minification to optimize your site code and make it smaller and more efficient to run.","og_url":"https:\/\/wpengine.com\/case-studies\/resources\/how-to-improve-a-wordpress-sites-performance-with-minification\/","og_site_name":"WP Engine","article_publisher":"https:\/\/www.facebook.com\/wpengine","article_modified_time":"2025-11-25T16:00:31+00:00","og_image":[{"width":1200,"height":627,"url":"https:\/\/wpengine.com\/case-studies\/wp-content\/uploads\/2018\/11\/improve-site-performance_1200x627.png","type":"image\/png"}],"twitter_card":"summary_large_image","twitter_title":"How to Improve a WordPress Site's Performance with Minification","twitter_description":"This guide will help you learn how to use minification to optimize your site code and make it smaller and more efficient to run.","twitter_image":"https:\/\/wpengine.com\/case-studies\/wp-content\/uploads\/2018\/11\/improve-site-performance_1100x500.png","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\/how-to-improve-a-wordpress-sites-performance-with-minification\/","url":"https:\/\/wpengine.com\/case-studies\/resources\/how-to-improve-a-wordpress-sites-performance-with-minification\/","name":"How to Improve a WordPress Site's Performance with Minification","isPartOf":{"@id":"https:\/\/wpengine.com\/case-studies\/#website"},"datePublished":"2018-11-18T22:04:27+00:00","dateModified":"2025-11-25T16:00:31+00:00","description":"This guide will help you learn how to use minification to optimize your site code and make it smaller and more efficient to run.","breadcrumb":{"@id":"https:\/\/wpengine.com\/case-studies\/resources\/how-to-improve-a-wordpress-sites-performance-with-minification\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/wpengine.com\/case-studies\/resources\/how-to-improve-a-wordpress-sites-performance-with-minification\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/wpengine.com\/case-studies\/resources\/how-to-improve-a-wordpress-sites-performance-with-minification\/#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 Improve a WordPress Site&#8217;s Performance with Minification"}]},{"@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\/2018\/11\/improve-site-performance_343x245.png","media-type":{"term_id":916,"name":"Article","slug":"article"},"role":"<strong>Roles:<\/strong> Developer, Site Owner","topic":"<strong>Topics:<\/strong> Performance, WordPress","_links":{"self":[{"href":"https:\/\/wpengine.com\/case-studies\/wp-json\/wp\/v2\/resource\/30577","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\/144571"}],"wp:attachment":[{"href":"https:\/\/wpengine.com\/case-studies\/wp-json\/wp\/v2\/media?parent=30577"}],"wp:term":[{"taxonomy":"resource-topic","embeddable":true,"href":"https:\/\/wpengine.com\/case-studies\/wp-json\/wp\/v2\/resource-topic?post=30577"},{"taxonomy":"resource-role","embeddable":true,"href":"https:\/\/wpengine.com\/case-studies\/wp-json\/wp\/v2\/resource-role?post=30577"},{"taxonomy":"resource-type","embeddable":true,"href":"https:\/\/wpengine.com\/case-studies\/wp-json\/wp\/v2\/resource-type?post=30577"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}