Fixed Knowledge Base

Get all the help you need here.

Wordpress Overview and Structure

Posted 04th October, 2018

Wordpress is the most popular online website creation software, running approximately thirty percent of all websites on the internet. It allows anyone, from beginners with no technical ability, to experienced web designers, to create a fully functional and powerful website quickly and easily.

Contents

  • Overview and History
  • Structure
    • Core files
    • Content

Overview and History

Wordpress was created in 2003 as a blogging tool. It became a popular way of creating a site quickly and easily, and evolved to a powerful content management system.

Because of the ability to add plugins and extend the application - for example with shopping cart functionality, or as a portal for real estate agents - thousands of free and paid resources and extensions were created.

Structure

Like most websites, Wordpress consists of files and a database. The database stores website content and settings, whereas the files contain the logic and styling of the site. For files, Wordpress uses a tree structure like with any set of folders and files.

An index.php in the home directory is called by site visitors.

WordPress file architecture can be easily divided into two main sections:

  • The Wordpress Core includes all main containers and WordPress functions. This core is identical for every Wordpress website.
  • The Wordpress Content includes templates, media, plugins. These can be unique for every Wordpress site.

Core

The core consists of all files and folders of a WordPress installation excluding the wp-content directory.

Some key files include:

  • .htaccess: A .htaccess file tells a web server how to handle requests. While not a specific Wordpress file, missing content or an error can cause a website to have broken navigation or to not load at all.
  • wp-config.php: The main WordPress configuration file, this establishes the connection between the database and the files.
  • wp-login.php: This is the WordPress login page for the admin area.
  • wp-admin/. This is the Wordpress admin area. An issue with this directory will cause the Wordpress admin area to go offline.
  • wp-includes/. This directory holds core functions of Wordpress - everything from enabling cache, to emojis, to template functions.

The core files are fully replaceable. If an issue occurs with any of them, they can easily be replaced with a freshly downloaded WordPress install. Take care not to overwrite any of the Content components, and update the configuration in your wp-config.php file if you replace that.

Replacing the core files with the latest Wordpress version would also upgrade your WordPress website.

Content

Wordpress content files site within the wp-content directory. The following sub-folders are self-descriptive:

  • /uploads. Media files are placed here. They can be directly uploaded, though are usually stored in a structure based on the year and month of the upload of the media files.
  • /plugins. All WordPress plugins are placed in this directory. The folder names equate to the plugin name.
  • /themes. Wordpress theme data is placed within this directory, in individual folders.

Useful links

WordPress Files official codex