filter_SSL() WordPress Function
The filter_SSL() WordPress function allows for content to be filtered through a Secure Sockets Layer (SSL) connection. This is useful for ensuring that sensitive data is transmitted securely between a user and a website. SSL is a protocol that provides a secure channel for communication between two computers.
filter_SSL( string $url ) #
Formats a URL to use https.
Description
Useful as a filter.
Parameters
- $url
(string)(Required)URL
Return
(string) URL with https as the scheme
Source
File: wp-includes/ms-functions.php
function filter_SSL( $url ) { // phpcs:ignore WordPress.NamingConventions.ValidFunctionName.FunctionNameInvalid if ( ! is_string( $url ) ) { return get_bloginfo( 'url' ); // Return home blog URL with proper scheme. } if ( force_ssl_content() && is_ssl() ) { $url = set_url_scheme( $url, 'https' ); } return $url; }
Expand full source codeCollapse full source codeView on TracView on GitHub
Changelog
Version | Description |
---|---|
2.8.5 | Introduced. |