wp-includes/speculative-loading.php:158Returns the value of a speculative loading override, as supplied by a constant or an environment variable.
$namestringstring|nullfunction wp_get_speculative_loading_override( string $name ): ?string { $value = null; // Check if the environment variable has been set, if `getenv` is available on the system. if ( function_exists( 'getenv' ) ) { $has_env = getenv( $name ); if ( false !== $has_env ) { $value = $has_env; } } // Fetch the value from a constant, which overrides the environment variable. if ( defined( $name ) ) { $has_constant = constant( $name ); if ( is_string( $has_constant ) ) { $value = $has_constant; } } return $value;}Introduced in 7.1.0.
Signature, return type and hooks compared across 1 parsed release.
src/wp-includes/speculative-loading.php, and regenerated for each WordPress release so it tracks the code rather than a snapshot of it.