Project Type: WordPress Reference

Performance Settings

WordPress provides several constants to control memory usage, caching, cron behavior, and script handling for optimal performance. Memory Limits WP_MEMORY_LIMIT define( 'WP_MEMORY_LIMIT', '256M' ); Type: String Default: 40M (single site),...

Security Settings

WordPress security constants protect your site through authentication tokens, file access controls, and SSL/HTTPS enforcement. Security Keys and Salts Security keys are used to encrypt information stored in cookies. Each...

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...

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...

Network Admin (Multisite)

All Network Admin screens require multisite. Files load /wp-admin/network/admin.php, which ensures multisite and applies the redirect_network_admin_request filter. admin.php URL: /wp-admin/network/admin.php Capability required: Multisite only (no direct cap check here; individual...

← Back to Chubes.net