Project Type: WordPress Reference

Update Settings

WordPress provides granular control over automatic updates for core, plugins, themes, and translations. Core Update Constants WP_AUTO_UPDATE_CORE define( 'WP_AUTO_UPDATE_CORE', true ); Type: Boolean or String Default: minor (since WordPress 3.7)...

wp-config.php Overview

The wp-config.php file is WordPress's primary configuration file. It contains the essential settings WordPress needs to connect to the database and operate. This file is created during WordPress installation and...

Themes

themes.php URL: /wp-admin/themes.php Capability required: switch_themes or edit_theme_options (and related caps like install_themes, delete_themes, update_themes). What it does: Displays installed themes, handles theme activation, deletion, auto-updates, and links to the...

Tools

tools.php URL: /wp-admin/tools.php Capability required: Varies by tool; base page is available to admins. Import section requires import; category/tag conversion requires term management caps. What it does: Tools hub for...

Users

users.php URL: /wp-admin/users.php Capability required: list_users (and related caps like edit_users, delete_users, promote_users, remove_users). What it does: Lists users, handles bulk actions (delete, remove, change role), and filtering/search. Key hooks:...

Admin Pages

WordPress admin (wp-admin/) page files. Source: wp-admin/*.php Page Categories Category Description core.md Dashboard, profile, about posts.md Post management screens pages.md Page management screens media.md Media library screens comments.md Comment management...

Database Settings

WordPress requires a MySQL or MariaDB database. These constants configure the database connection. Required Constants DB_NAME define( 'DB_NAME', 'wordpress' ); Required: Yes Type: String Purpose: Name of the database WordPress...

Debug Settings

WordPress provides extensive debugging options for development and troubleshooting. These should be disabled in production. Primary Debug Constants WP_DEBUG define( 'WP_DEBUG', true ); Type: Boolean Default: false Purpose: Master switch...

Core admin entry points

admin.php URL: /wp-admin/admin.php Capability required: No single capability; uses auth_redirect() to require logged-in users, then defers to the current screen’s own capability checks. Raises memory limit if manage_options. What it...

Media

upload.php (Media Library) URL: /wp-admin/upload.php Capability required: upload_files (and delete_post for deleting attachments). What it does: Lists media items, handles bulk actions, and provides entry points to edit attachments. Key...

← Back to Chubes.net