<?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>Forem: Paul Dixon</title>
    <description>The latest articles on Forem by Paul Dixon (@paullyd_ca).</description>
    <link>https://forem.com/paullyd_ca</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%2F2758602%2Fbc4e1c03-075a-4640-8f4a-65dc66f04ac1.jpg</url>
      <title>Forem: Paul Dixon</title>
      <link>https://forem.com/paullyd_ca</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://forem.com/feed/paullyd_ca"/>
    <language>en</language>
    <item>
      <title>Stop Installing 42 Plugins: How I Build Lean, Fast WordPress Sites Without the Bloat</title>
      <dc:creator>Paul Dixon</dc:creator>
      <pubDate>Fri, 28 Nov 2025 20:03:22 +0000</pubDate>
      <link>https://forem.com/paullyd_ca/stop-installing-42-plugins-how-i-build-lean-fast-wordpress-sites-without-the-bloat-2g92</link>
      <guid>https://forem.com/paullyd_ca/stop-installing-42-plugins-how-i-build-lean-fast-wordpress-sites-without-the-bloat-2g92</guid>
      <description>&lt;p&gt;At some point in every WordPress developer’s life, we inherit a site with a plugin list that reads like the credits of a Marvel movie — long, unnecessary, and full of things we’ve never heard of.&lt;/p&gt;

&lt;p&gt;You scroll through it thinking: &lt;em&gt;Why is there a plugin for breadcrumbs, three for forms, two for caching, and one that appears to exist solely to add a button that no one uses?&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;Welcome to modern WordPress.&lt;/p&gt;

&lt;p&gt;But it doesn’t have to be like this. Not every site needs a plugin for breathing. Most sites — especially small business sites — will run faster, break less, and be easier to maintain if you build with intention instead of panic-installing another “all-in-one magical solution” that somehow weighs more than the rest of the site combined.&lt;/p&gt;

&lt;p&gt;This is the approach I use at &lt;a href="https://ninjatuna.ca" rel="noopener noreferrer"&gt;&lt;strong&gt;Ninja Tuna&lt;/strong&gt;&lt;/a&gt;, where I build fast, accessible, SEO-friendly WordPress sites for small businesses. It’s not flashy. It’s not complicated. But it keeps client sites lean, predictable, and reliable.&lt;/p&gt;




&lt;h2&gt;
  
  
  Why Plugin Bloat Happens in the First Place
&lt;/h2&gt;

&lt;p&gt;Most bloated installs aren’t built by bad developers — they’re built by overwhelmed ones.&lt;/p&gt;

&lt;p&gt;A client asks for something quick → someone finds a plugin → that plugin depends on another plugin → the theme includes a “recommended plugins” installer → then marketing requests a pop-up → then the social team wants embedded Instagram feeds → then someone installs &lt;em&gt;two&lt;/em&gt; security plugins because “more must be better.”&lt;/p&gt;

&lt;p&gt;Suddenly the site loads like it’s streaming from a potato.&lt;/p&gt;

&lt;p&gt;What’s really happening is this:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Plugins become substitutes for thinking.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;When you don’t have a system, you reach for tools instead of solutions. And WordPress is very generous with tools.&lt;/p&gt;




&lt;h2&gt;
  
  
  My Approach: Start With a Lean Foundation
&lt;/h2&gt;

&lt;p&gt;I start every build with one simple goal:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Use as little custom moving parts as possible — and make every part earn its place.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;That means:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;One clean, stable theme
&lt;/li&gt;
&lt;li&gt;One layout system
&lt;/li&gt;
&lt;li&gt;A handful of well-supported plugins
&lt;/li&gt;
&lt;li&gt;Custom code where it makes more sense than adding another dependency
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;If my plugin list scrolls, I already know something’s wrong.&lt;/p&gt;

&lt;p&gt;This mindset alone prevents 80% of future chaos.&lt;/p&gt;




&lt;h2&gt;
  
  
  Skip the Page Builder Soup
&lt;/h2&gt;

&lt;p&gt;One of the biggest things that wrecks performance is mixing layout systems.&lt;br&gt;&lt;br&gt;
You know the ones:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Elementor on some pages
&lt;/li&gt;
&lt;li&gt;Gutenberg on others
&lt;/li&gt;
&lt;li&gt;WPBakery lurking in the background from the old theme
&lt;/li&gt;
&lt;li&gt;Maybe even a rogue shortcode plugin throwing CSS in the header because… reasons
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;When I build a site, I commit to a single approach — usually Gutenberg with a strong &lt;code&gt;theme.json&lt;/code&gt;, or ACF Blocks when I need something more structured.&lt;/p&gt;

&lt;p&gt;It keeps markup clean, helps performance, and prevents clients from creating design chaos when they log in to “fix one thing” at midnight.&lt;/p&gt;




&lt;h2&gt;
  
  
  If a Plugin Does Something Simple, I Replace It With Code
&lt;/h2&gt;

&lt;p&gt;A shocking number of plugins exist to do extremely small things:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Hide the WP version
&lt;/li&gt;
&lt;li&gt;Disable XML-RPC
&lt;/li&gt;
&lt;li&gt;Change the login logo
&lt;/li&gt;
&lt;li&gt;Add a custom post type
&lt;/li&gt;
&lt;li&gt;Remove a meta tag
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;These are five-line snippets — not plugins.&lt;/p&gt;

&lt;p&gt;And when you replace ten tiny plugins with a single clean &lt;code&gt;mu-plugin&lt;/code&gt; of custom code, the whole site becomes faster, more stable, and easier to maintain.&lt;/p&gt;

&lt;p&gt;Plus, clients can’t accidentally deactivate it. (Ask me how many times I’ve had someone say “the site broke but I didn’t change anything” after turning off a critical plugin.)&lt;/p&gt;




&lt;h2&gt;
  
  
  Choose Plugins Like You’re Hiring Staff
&lt;/h2&gt;

&lt;p&gt;A plugin shouldn’t be installed because it &lt;em&gt;exists&lt;/em&gt;.&lt;br&gt;&lt;br&gt;
It should be installed because it’s &lt;em&gt;earned its salary&lt;/em&gt;.&lt;/p&gt;

&lt;p&gt;I look for:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Good documentation
&lt;/li&gt;
&lt;li&gt;Active updates
&lt;/li&gt;
&lt;li&gt;Devs who know how to enqueue scripts properly
&lt;/li&gt;
&lt;li&gt;Minimal data pollution
&lt;/li&gt;
&lt;li&gt;A focus on doing one job well
&lt;/li&gt;
&lt;li&gt;A reputation for not lighting your Core Web Vitals on fire
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;I don’t want a Swiss Army Knife plugin that tries to do 27 things.&lt;br&gt;&lt;br&gt;
I want a sharp, single-purpose tool I can trust.&lt;/p&gt;




&lt;h2&gt;
  
  
  Build Structure Into the Theme, Not the Plugin List
&lt;/h2&gt;

&lt;p&gt;One of the reasons my sites stay lean is because structure lives in:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Block patterns
&lt;/li&gt;
&lt;li&gt;Template parts
&lt;/li&gt;
&lt;li&gt;Custom fields where necessary
&lt;/li&gt;
&lt;li&gt;Locked editing where clients shouldn’t touch
&lt;/li&gt;
&lt;li&gt;Theme.json for spacing, colours, typography, and consistency
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;When your system has predictable guardrails, you don’t need plugins to fix design problems later.&lt;/p&gt;

&lt;p&gt;Clients can update content safely.&lt;br&gt;&lt;br&gt;
SEO stays intact.&lt;br&gt;&lt;br&gt;
Accessibility stays intact.&lt;br&gt;&lt;br&gt;
Performance doesn’t degrade every time someone adds a hero banner with eight animations and a Spotify embed.&lt;/p&gt;




&lt;h2&gt;
  
  
  Lean Isn’t Minimalism — It’s Intentionality
&lt;/h2&gt;

&lt;p&gt;A lean WordPress build isn’t about running as few plugins as possible.&lt;br&gt;&lt;br&gt;
It’s about ensuring every piece of the system:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Has a purpose
&lt;/li&gt;
&lt;li&gt;Adds value
&lt;/li&gt;
&lt;li&gt;Doesn’t overlap
&lt;/li&gt;
&lt;li&gt;Doesn’t clash
&lt;/li&gt;
&lt;li&gt;Plays nicely with others
&lt;/li&gt;
&lt;li&gt;Won’t become a nightmare in three years
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;It’s like packing for a trip.&lt;br&gt;&lt;br&gt;
You can bring five coats if you want — but you’re the one who has to carry the suitcase.&lt;/p&gt;




&lt;h2&gt;
  
  
  The Result: Fast Sites, Happy Clients, Less Firefighting
&lt;/h2&gt;

&lt;p&gt;When you build lean:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Updates stop being terrifying
&lt;/li&gt;
&lt;li&gt;Hosting stays cheap
&lt;/li&gt;
&lt;li&gt;Security improves
&lt;/li&gt;
&lt;li&gt;SEO gets easier
&lt;/li&gt;
&lt;li&gt;Page speed stops tanking
&lt;/li&gt;
&lt;li&gt;Debugging becomes actually manageable
&lt;/li&gt;
&lt;li&gt;Clients stop calling you because “the button disappeared again”
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Most importantly?&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;The site stays trustworthy.&lt;/strong&gt;&lt;br&gt;&lt;br&gt;
The future you (or future developer) will be grateful the whole thing isn’t held together with plugin duct tape.&lt;/p&gt;




&lt;h2&gt;
  
  
  If This Sounds Like the Kind of Site You Want
&lt;/h2&gt;

&lt;p&gt;This is the exact approach I use at &lt;strong&gt;Ninja Tuna&lt;/strong&gt;, where I build fast, accessible WordPress sites for small businesses — not Franken-sites stitched together from whatever plugin was on sale this week.&lt;/p&gt;

&lt;p&gt;If you prefer your WordPress stack light, predictable, and built with intention, I’m your guy.&lt;/p&gt;

</description>
      <category>wordpress</category>
      <category>webdev</category>
      <category>performance</category>
      <category>productivity</category>
    </item>
  </channel>
</rss>
