Project Type: WordPress Reference

Script Modules Functions

Global functions for registering and managing script modules. Source: wp-includes/script-modules.php wp_script_modules() Retrieves the main WP_Script_Modules instance. function wp_script_modules(): WP_Script_Modules Since: 6.5.0 Description Provides access to the singleton WP_Script_Modules instance, creating...

Script Modules Hooks

Actions and filters for customizing script module behavior. Source: wp-includes/class-wp-script-modules.php Filters script_module_loader_src Filters the script module source URL. apply_filters( 'script_module_loader_src', string $src, string $id ) Since: 6.5.0 Parameters Parameter Type...

wp-mail.php

Purpose Implements Post by Email: pulls messages from a configured POP3 mailbox and turns them into posts. Flow Loads WordPress and checks enable_post_by_email_configuration filter. Validates mailserver settings and rate-limits execution....

wp-settings.php

Purpose Core bootstrap that initializes WordPress: loads core libraries, sets constants, configures DB/cache, loads plugins and themes, and fires the key lifecycle hooks (init, wp_loaded). Flow Defines WPINC and loads...

wp-signup.php

Purpose Multisite signup handler for new users and/or new sites, including validation and form rendering. Flow Loads WordPress (wp-load.php) and front-end context (wp-blog-header.php). Ensures multisite and main-site context; otherwise redirects....

wp-trackback.php

Purpose Handles incoming trackbacks/pingbacks, validates data, and creates trackback comments. Flow Loads WordPress and runs wp( array( 'tb' => '1' ) ) when needed. Runs as unauthenticated user. Parses and...

xmlrpc.php

Purpose XML-RPC endpoint for remote publishing and legacy APIs (MetaWeblog, Blogger, MovableType, etc.). Flow Defines XMLRPC_REQUEST and clears cookies. Reads raw POST body and loads WordPress. If ?rsd is requested,...

WP_Script_Modules Class

Core class for registering and managing script modules. Since: 6.5.0 Source: wp-includes/class-wp-script-modules.php Properties Private Properties Property Type Description $registered array<string, array> Registered script modules, keyed by ID $queue string[] IDs...

wp-comments-post.php

Purpose Processes comment submissions and prevents duplicate/invalid posts. Flow Requires a POST request; otherwise returns 405. Loads WordPress and disables cache headers. Calls wp_handle_comment_submission() to validate and insert. Fires cookie-setting...

wp-config-sample.php

Purpose Template configuration file used during installation. Provides placeholder constants and structure for creating a real wp-config.php. Flow Defines placeholder DB constants and authentication salts. Sets $table_prefix and WP_DEBUG defaults....

← Back to Chubes.net