Root Files

wp-login.php

PurposeHandles authentication-related flows: login, logout, registration, password reset, and admin email confirmation.FlowLoads WordPress via wp-load.php and enforces SSL if required.Determines...

Updated February 13, 2026

index.php

PurposeEntry point for front-end requests. It only defines WP_USE_THEMES and hands off execution to wp-blog-header.php.FlowDefines WP_USE_THEMES as true to signal...

Updated February 13, 2026

Root Files

Entry point files in the WordPress root directory.Source: WordPress installation rootBootstrapFileDescriptionindex.php.mdFront controller entry pointwp-load.php.mdEnvironment loaderwp-blog-header.php.mdTemplate loaderwp-settings.php.mdCore initializationwp-config.php.mdSite configurationwp-config-sample.php.mdConfig templateAuthenticationFileDescriptionwp-login.php.mdLogin/logout handlingwp-signup.php.mdMultisite...

Updated February 13, 2026

wp-activate.php

PurposeMultisite activation endpoint. Validates signup activation keys and completes user/site activation.FlowDefines WP_INSTALLING and loads WordPress + front-end header.Requires multisite; otherwise...

Updated February 13, 2026

wp-blog-header.php

PurposeLoads the WordPress environment and runs the front-end request lifecycle (query + template).FlowEnsures it only runs once via $wp_did_header guard.Requires...

Updated February 13, 2026

wp-load.php

PurposeBootstraps WordPress by defining ABSPATH and loading wp-config.php, which then loads wp-settings.php. If no config exists, it initiates the setup...

Updated February 13, 2026

wp-mail.php

PurposeImplements Post by Email: pulls messages from a configured POP3 mailbox and turns them into posts.FlowLoads WordPress and checks enable_post_by_email_configuration...

Updated February 13, 2026

wp-settings.php

PurposeCore bootstrap that initializes WordPress: loads core libraries, sets constants, configures DB/cache, loads plugins and themes, and fires the key...

Updated February 13, 2026

wp-signup.php

PurposeMultisite signup handler for new users and/or new sites, including validation and form rendering.FlowLoads WordPress (wp-load.php) and front-end context (wp-blog-header.php).Ensures...

Updated February 13, 2026

wp-trackback.php

PurposeHandles incoming trackbacks/pingbacks, validates data, and creates trackback comments.FlowLoads WordPress and runs wp( array( 'tb' => '1' ) ) when...

Updated February 13, 2026

xmlrpc.php

PurposeXML-RPC endpoint for remote publishing and legacy APIs (MetaWeblog, Blogger, MovableType, etc.).FlowDefines XMLRPC_REQUEST and clears cookies.Reads raw POST body and...

Updated February 13, 2026

wp-comments-post.php

PurposeProcesses comment submissions and prevents duplicate/invalid posts.FlowRequires a POST request; otherwise returns 405.Loads WordPress and disables cache headers.Calls wp_handle_comment_submission() to...

Updated February 13, 2026
← Back to Chubes.net