WordPress uses a MySQL (or MariaDB) database to store all the data for your website. Understanding its database structure can help you manage and troubleshoot your site more effectively. Here’s an overview of the key tables in the WordPress database structure and what they store:
WordPress Database Tables

1. wp_posts
– Purpose: Stores all content types like posts, pages, and revisions.
– Key Columns:
– `ID`: Unique identifier for each post.
– `post_author`: User ID of the post author.
– `post_date`: Date and time when the post was created.
– `post_content`: The content of the post.
– `post_title`: The title of the post.
– `post_status`: Status of the post (e.g., ‘publish’, ‘draft’).
– `post_type`: Type of post (e.g., ‘post’, ‘page’, ‘revision’).
2. wp_postmeta
– Purpose: Stores metadata for posts.
– Key Columns:
– `meta_id`: Unique identifier for each metadata entry.
– `post_id`: ID of the associated post.
– `meta_key`: The key for the metadata.
– `meta_value`: The value for the metadata.
3. wp_users
– Purpose: Stores user information.
– Key Columns:
– `ID`: Unique identifier for each user.
– `user_login`: Username.
– `user_pass`: Encrypted password.
– `user_email`: User’s email address.
– `user_registered`: Date and time the user registered.
– `display_name`: Display name of the user.
4. wp_usermeta
– Purpose: Stores metadata for users.
– Key Columns:
– `umeta_id`: Unique identifier for each metadata entry.
– `user_id`: ID of the associated user.
– `meta_key`: The key for the metadata.
– `meta_value`: The value for the metadata.
5. wp_terms
– Purpose: Stores taxonomy terms for categories, tags, and custom taxonomies.
– Key Columns:
– `term_id`: Unique identifier for each term.
– `name`: Name of the term.
– `slug`: URL-friendly version of the term name.
6. wp_term_taxonomy
– Purpose: Describes the taxonomy of terms (e.g., category, tag).
– Key Columns:
– `term_taxonomy_id`: Unique identifier for each term taxonomy.
– `term_id`: ID of the associated term.
– `taxonomy`: Type of taxonomy (e.g., ‘category’, ‘post_tag’).
– `description`: Description of the term.
– `parent`: ID of the parent term (for hierarchical taxonomies).
– `count`: Number of objects associated with the term.
7. wp_term_relationships
– Purpose: Associates posts with terms.
– Key Columns:
– `object_id`: ID of the associated post.
– `term_taxonomy_id`: ID of the associated term taxonomy.
8. wp_options
– Purpose: Stores site-wide options and settings.
– Key Columns:
– `option_id`: Unique identifier for each option.
– `option_name`: Name of the option.
– `option_value`: Value of the option.
– `autoload`: Whether to load the option at startup.
9. wp_comments
– Purpose: Stores comments on posts and pages.
– Key Columns:
– `comment_ID`: Unique identifier for each comment.
– `comment_post_ID`: ID of the associated post.
– `comment_author`: Name of the comment author.
– `comment_author_email`: Email of the comment author.
– `comment_author_url`: URL of the comment author.
– `comment_date`: Date and time the comment was posted.
– `comment_content`: Content of the comment.
– `comment_approved`: Approval status of the comment.
10. wp_commentmeta
– Purpose: Stores metadata for comments.
– Key Columns:
– `meta_id`: Unique identifier for each metadata entry.
– `comment_id`: ID of the associated comment.
– `meta_key`: The key for the metadata.
– `meta_value`: The value for the metadata.
More about WordPress database structure:
- Additional Tables
Depending on your plugins and themes, you may see additional tables. These are usually prefixed with `wp_` but can be customized during installation.
- Relationships and Data Flow
– Posts and Post Meta: `wp_posts` contains the main content, and `wp_postmeta` stores additional details about each post.
– Users and User Meta: `wp_users` stores user credentials and basic info, while `wp_usermeta` contains additional user details.
– Terms and Taxonomies: `wp_terms` stores individual terms, `wp_term_taxonomy` classifies these terms, and `wp_term_relationships` links terms to posts.
– Options: `wp_options` holds all the settings that control how WordPress behaves site-wide.
– Comments and Comment Meta: `wp_comments` contains all the comments, with `wp_commentmeta` storing additional comment information.
Understanding this structure helps in tasks such as database optimization, custom queries, and troubleshooting issues.
The WordPress database structure is built on MySQL and consists of a series of well-organized tables, such as wp_posts, wp_users, and wp_options, designed to store and manage website content, user information, settings, and relationships efficiently, so learn it and practice it more.