What WordPress Actually Is

WordPress Fundamentals

Chapter 1 · What WordPress Actually Is

"WordPress" is one name attached to two genuinely different things, running on top of a stack this site has already covered in real depth from three separate directions. This chapter sorts out both — what you're actually about to learn, and what it's actually built on — before any dashboard tour begins.

WordPress.org vs. WordPress.com — Two Very Different Things Behind One Name

WordPress.org is free, open-source software — a program you install on your own web hosting, that you fully own and control. WordPress.com is a commercial hosted service, run by a company called Automattic, built using that same open-source software but wrapped in its own hosting, its own rules, and its own tiered pricing. Same underlying name, same underlying code — genuinely different products.

WordPress.org (self-hosted)WordPress.com (hosted service)
You provide your own hosting and install the software yourselfAutomattic hosts it for you — no server of your own required
Any plugin or theme can be installed, with no restrictionsCustom plugins/themes are restricted or blocked entirely on lower-tier plans
Full control over updates, backups, and configurationMuch of this is handled — and locked down — by the platform
Free to download; you pay only for hostingFree tier exists, but real capability requires a paid plan
This course is entirely about WordPress.org
Self-hosted WordPress is the version with real power and real flexibility — the one worth understanding deeply as a site owner or a future developer. Every chapter in this course, and in WordPress Intermediate/Advanced, assumes the self-hosted, WordPress.org version unless stated otherwise.

Why WordPress's Market Share Actually Matters

A genuinely notable, real statistic
WordPress powers a substantial share of the entire web — commonly cited figures put it at well over 40% of all websites, and a clear majority of sites that run on any identifiable content management system at all. This isn't a niche tool; it's one of the most widely deployed pieces of software on the internet.

That scale has real, practical consequences worth knowing before you invest time learning it:

  • An enormous plugin and theme ecosystem — tens of thousands of free and paid options covering almost any feature a site might need
  • A huge base of documentation and community support — a problem you hit has very likely already been solved and written up publicly
  • A genuinely marketable, employable skill — WordPress site management and development are real, in-demand job categories, not a purely academic exercise

The Stack Underneath — LAMP, and Three Courses Already on This Site

WordPress isn't a mysterious black box — it's a PHP application, storing its content in a MySQL (or MariaDB) database, typically served by Apache or Nginx on Linux. That's the classic LAMP stack (Linux, Apache, MySQL, PHP), and this site has already covered every layer of it, separately, in real depth.

LAMP layerWhat WordPress uses it forAlready covered by
Linux + ApacheThe server WordPress's files live on and get served fromSetting Up a Web Server on Debian
MySQLEvery post, page, comment, user, and setting is a row in a MySQL databaseMySQL Installation & Administration, MySQL Foundations
PHPWordPress core, every theme, and every plugin is PHP code, executed on each page requestPHP Fundamentals
You don't need any of that to start this course
WordPress Fundamentals is deliberately usable as a pure site-owner's course — managing content, themes, and plugins through the dashboard, with no PHP, no SQL, and no server administration required at all. The LAMP-stack knowledge above becomes directly relevant only once WordPress Intermediate/Advanced opens the hood on theme and plugin development — this chapter names the connection early so it's there when you need it, not because you need it yet.

What This Course Covers

Installation and initial setup, the dashboard and its core concepts, the Block Editor, themes, plugins, media and content organization, user roles, comments, and ongoing maintenance — everything a site owner genuinely needs, in the order it's actually needed. WordPress Intermediate/Advanced picks up from there with real PHP development: custom themes, custom post types, plugin development, and security hardening.

Hands-On Exercises

Exercise 1

A friend says they're "using WordPress" for their blog and mentions they can't install any custom plugins. Explain what this tells you about which version of WordPress they're actually using, and why.

📄 View solution
Exercise 2

Explain, in your own words, what each letter of LAMP corresponds to in a running WordPress site, and name one specific thing WordPress stores in the "M" layer.

📄 View solution
Exercise 3

Explain why this chapter argues that WordPress's large market share is practically useful to know about, beyond simply being an interesting statistic.

📄 View solution

Chapter 1 Quick Reference

  • WordPress.org — free, self-hosted software, full control; this course's entire focus
  • WordPress.com — a hosted commercial service built on the same software, with real restrictions on lower tiers
  • WordPress powers well over 40% of all websites — a huge ecosystem, huge community support, and a real, marketable skill
  • WordPress runs on the LAMP stack — Linux/Apache, MySQL, PHP — already covered separately by this site's own server, database, and PHP courses
  • No PHP/SQL/server knowledge is required to start this course — that becomes relevant in WordPress Intermediate/Advanced
  • Next chapter: Installation & Initial Setup