MODULE 02 · CONTENT & DESIGN

Introduction to Plugins

If themes control how your site looks, plugins control what it can do. Today you'll learn how to find, evaluate, and install plugins safely.

Day 13 of 30 Beginner ~17 min

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.

Free vs Premium, Same as Themes

Plugin sourcing follows the same pattern you learned for themes on Day 4.

SOURCE WHAT TO EXPECT
WordPress.org repo

Free, security-reviewed, and searchable directly inside your dashboard — the safest starting point.

Premium plugins

Sold directly by developers, often with more advanced features and dedicated support included.

Custom-built

Written specifically for one site's needs — you'll build a very small one yourself on Day 22.

NEVER DO THIS

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.

plugin-checklist.txt
// 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.

  • Go to Plugins → Add New Plugin in your dashboard.
  • Search by name or need — try "contact form" or "SEO" to see real options.
  • Check the checklist above before committing to one.
  • Click Install, then Activate — activation is what actually turns the functionality on.
  • Look for a new dashboard menu item — most plugins add their own settings page.
  • Fewer, Better Plugins

    It's tempting to install a plugin for every small feature — resist that instinct.

    TOO MANY PLUGINS A dozen lightly-used plugins slow down your site, increase security surface, and are more likely to conflict with each other.
    A CURATED SET A handful of well-maintained plugins, each solving a real need, keeps your site fast and easier to troubleshoot.

    Red Flags Worth Knowing

    PROCEED WITH CAUTION
    ABANDONED No update in over a year often means unpatched security issues.
    FEW INSTALLS Under a few hundred active installs means it's barely been tested in the wild.
    NO SUPPORT REPLIES A support forum full of unanswered questions signals a developer who's moved on.

    Breaking Down What You Just Learned

    1

    Plugins add functionalityIndependent of your theme, which only controls appearance.

    2

    Stick to trusted sourcesThe WordPress.org repository is the safest default.

    3

    Vet before installingUpdate date, install count, compatibility, and support activity all matter.

    4

    Install flowPlugins → Add New → search → install → activate.

    5

    Less is moreA curated set of plugins beats a bloated one for speed and security.

    Try It Yourself

    EXERCISE

    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

    HANDS-ON EXERCISE

    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.

    1. Go to Plugins → Add New and search for a feature your capstone site needs.
    2. Shortlist two candidates and run them through the evaluation checklist.
    3. Install and activate your chosen plugin.
    4. Find its new settings page in the dashboard menu.
    5. Confirm the new functionality actually works on your site's front end.

    Recap

    PLUGINS

    Add functionality independently of your theme's appearance.

    REPOSITORY

    The safest, free source — avoid pirated "nulled" plugins entirely.

    EVALUATION

    Check updates, installs, compatibility, and support activity.

    CURATED SET

    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.
    Course Overview