<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: A Siddee</title>
    <description>The latest articles on DEV Community by A Siddee (@siddee).</description>
    <link>https://dev.to/siddee</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3810324%2F93e2df5e-6cbd-4040-a74a-eb6e20743a99.png</url>
      <title>DEV Community: A Siddee</title>
      <link>https://dev.to/siddee</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/siddee"/>
    <language>en</language>
    <item>
      <title>How I Improved My WordPress PageSpeed Score from 60 to 95</title>
      <dc:creator>A Siddee</dc:creator>
      <pubDate>Sat, 07 Mar 2026 07:18:57 +0000</pubDate>
      <link>https://dev.to/siddee/how-i-improved-my-wordpress-pagespeed-score-from-60-to-95-2gae</link>
      <guid>https://dev.to/siddee/how-i-improved-my-wordpress-pagespeed-score-from-60-to-95-2gae</guid>
      <description>&lt;p&gt;The speed of the website is one of those things that many website owners tend to overlook or take for granted until such time when they actually encounter issues with the website’s search engine ranking or user experience.&lt;br&gt;
Recently, I had the chance to improve the speed of a WordPress website &lt;a href="https://siddeehayat.com/" rel="noopener noreferrer"&gt;(siddeehayat.com)&lt;/a&gt; , whose original Page Speed score was around 60. After making some improvements to some of the website’s major areas, the website’s Page Speed score improved to 95, and the website is now faster.&lt;br&gt;
In this article, I will walk you through the exact steps I took to improve the website’s speed so you may also apply the same techniques to your WordPress website.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Why Page Speed Is Important&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;It is already stated in Google’s guidelines that website speed is an important ranking factor for search engines. A website with faster speed will definitely offer a better user experience, and users will tend to stay longer on your website if it loads quickly.&lt;br&gt;
Page Speed Insights also evaluates the website’s core web vitals, such as&lt;br&gt;
Largest Contentful Paint (LCP)—how long it takes for the main content to load&lt;br&gt;
Cumulative Layout Shift (CLS) – how much the layout shifts around&lt;br&gt;
Total Blocking Time (TBT) – how much JavaScript is blocking the page&lt;br&gt;
Improving your website’s core web vitals will greatly improve your website’s SEO and user experience.&lt;br&gt;
Step 1: Optimizing Images&lt;br&gt;
Images are one of the main reasons why many websites load slowly.&lt;br&gt;
The first step I took to improve the website’s page speed was to convert all images into WebP format, as it greatly reduces the overall file size of the images with good quality.&lt;br&gt;
I also made sure that all the images are under 100 KB and enabled lazy loading, so images are only loaded when they are actually visible on the screen.&lt;br&gt;
Making these changes greatly improved the website’s page load speed.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Step 2: Tuning LiteSpeed Cache for Speed&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;The other major improvement came from proper tuning of LiteSpeed Cache. Many people install caching plugins and leave them as is, rather than tuning them for proper optimization. Here, I enabled some of the major optimization options available with LiteSpeed Cache, such as:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;CSS Minification&lt;/li&gt;
&lt;li&gt;JavaScript Minification&lt;/li&gt;
&lt;li&gt;Deferred JavaScript Loading&lt;/li&gt;
&lt;li&gt;Remove Unused CSS&lt;/li&gt;
&lt;li&gt;Browser Caching&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Proper utilization of caching plugins is a major improvement for any website and helps improve Page Speed significantly.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Step 3: Cutting Down on Unnecessary Plugins&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Having too many plugins installed on your website is also a major contributor to slowing it down. Rather than installing many plugins for small functionalities, it is always recommended to keep your website as light as possible and use custom CSS for such purposes. Reducing the number of plugins is a major improvement for your website and helps improve Page Speed by reducing:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;HTTP Requests&lt;/li&gt;
&lt;li&gt;JavaScript Execution&lt;/li&gt;
&lt;li&gt;Server Load&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Having fewer plugins installed on your website is always recommended and helps improve your website’s Page Speed significantly.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Step 4: Eliminating Render-Blocking Resources&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Having too many render-blocking resources, such as CSS and JavaScript files, is also a major contributor to slowing down your website’s Page Speed. By using techniques such as Deferred JavaScript Loading, you can reduce the number of render-blocking resources on your website significantly. Page Speed Insights and other similar tools will show you the number of render-blocking resources and where you need to make improvements. Understanding such issues is also important if you want to improve your website’s visibility and search results.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Step 5: Font Optimization and Layout Stability&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Having too many font styles can negatively affect performance. Using proper font loading techniques and setting fixed dimensions for your website’s containers are also important for improving page speed and reducing the likelihood of CLS issues.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Results&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;After applying all these optimizations, the PageSpeed score improved significantly.&lt;/p&gt;

&lt;p&gt;Before Optimization&lt;br&gt;
Mobile Score: 60&lt;/p&gt;

&lt;p&gt;The website has a slow loading experience, and there are multiple render-blocking resources.&lt;/p&gt;

&lt;p&gt;After Optimization&lt;br&gt;
Mobile Score: 95&lt;/p&gt;

&lt;p&gt;The website has quicker loading times.&lt;/p&gt;

&lt;p&gt;The improvements were apparent not only in the tests but also in the actual user experience.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Final Thoughts&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Improving website performance isnt about making major changes. Instead, it’s about fine-tuning small areas, such as images, caching, scripts, and stability. When it comes to WordPress, improving website performance is key to improving user experience and search engine rankings.&lt;/p&gt;

</description>
      <category>website</category>
      <category>wordpress</category>
      <category>marketing</category>
      <category>seo</category>
    </item>
  </channel>
</rss>
