What a Plugin Actually Does
A plugin is a package of PHP code that adds new functionality to WordPress — anything from a contact form to full e-commerce. Where themes handle appearance, plugins handle behavior, and the two work independently of each other.
This is the same separation-of-concerns idea from Day 1: content, design, and functionality are all kept apart, which is exactly why you can swap any one of them without breaking the others.
- ✓Plugins live under the Plugins menu in your dashboard, separate from Appearance.
- ✓You can run as many plugins as you need — there's no hard cap, only a practical performance one.
- ✓Switching themes never disables your plugins, and vice versa.
Free vs Premium, Same as Themes
Plugin sourcing follows the same pattern you learned for themes on Day 4.
Free, security-reviewed, and searchable directly inside your dashboard — the safest starting point.
Sold directly by developers, often with more advanced features and dedicated support included.
Written specifically for one site's needs — you'll build a very small one yourself on Day 22.
Avoid "nulled" or pirated premium plugins from outside official sources — they're a common way sites get compromised with hidden malicious code.
What to Check Before Installing
The same signals you used to evaluate themes apply here, with one extra: plugins touch your site's functionality, so vetting matters even more.
// What to check before installing a plugin 1. Last updated // avoid anything untouched for 12+ months 2. Active installs // higher numbers = more battle-tested 3. "Tested up to" // confirms compatibility with your WP version 4. Support forum activity // are the developers actually responding?
From Search to Active Plugin
The install flow mirrors what you already know from installing themes.
Fewer, Better Plugins
It's tempting to install a plugin for every small feature — resist that instinct.
Red Flags Worth Knowing
Breaking Down What You Just Learned
Plugins add functionalityIndependent of your theme, which only controls appearance.
Stick to trusted sourcesThe WordPress.org repository is the safest default.
Vet before installingUpdate date, install count, compatibility, and support activity all matter.
Install flowPlugins → Add New → search → install → activate.
Less is moreA curated set of plugins beats a bloated one for speed and security.
Try It Yourself
Search Plugins → Add New for "contact form" and compare three results using the checklist from Section 03. Note which one you'd actually trust and why.
Install Your First Plugin
Adding real functionality to your site
Tomorrow's lesson covers a full essential-plugin stack, so today is about getting comfortable with the install process itself.
- Go to Plugins → Add New and search for a feature your capstone site needs.
- Shortlist two candidates and run them through the evaluation checklist.
- Install and activate your chosen plugin.
- Find its new settings page in the dashboard menu.
- Confirm the new functionality actually works on your site's front end.
Recap
Add functionality independently of your theme's appearance.
The safest, free source — avoid pirated "nulled" plugins entirely.
Check updates, installs, compatibility, and support activity.
Fewer, well-maintained plugins beat a bloated collection.
Key Takeaways
- Plugins add functionality to your site, completely independent of your active theme.
- The WordPress.org repository is the safest, free source for beginner-friendly plugins.
- Always check a plugin's update date, install count, compatibility, and support activity first.
- Installing takes four steps: search, evaluate, install, activate.
- A small, curated set of plugins keeps your site faster and easier to maintain than a bloated one.