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 yourself | Automattic hosts it for you — no server of your own required |
| Any plugin or theme can be installed, with no restrictions | Custom plugins/themes are restricted or blocked entirely on lower-tier plans |
| Full control over updates, backups, and configuration | Much of this is handled — and locked down — by the platform |
| Free to download; you pay only for hosting | Free tier exists, but real capability requires a paid plan |
WordPress Intermediate/Advanced, assumes the self-hosted, WordPress.org version unless stated otherwise.
Why WordPress's Market Share Actually Matters
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 layer | What WordPress uses it for | Already covered by |
|---|---|---|
| Linux + Apache | The server WordPress's files live on and get served from | Setting Up a Web Server on Debian |
| MySQL | Every post, page, comment, user, and setting is a row in a MySQL database | MySQL Installation & Administration, MySQL Foundations |
| PHP | WordPress core, every theme, and every plugin is PHP code, executed on each page request | PHP Fundamentals |
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
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 solutionExplain, 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 solutionExplain why this chapter argues that WordPress's large market share is practically useful to know about, beyond simply being an interesting statistic.
📄 View solutionChapter 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