Definition:
function force_ssl_content( $force = '' ) {}
Whether to force SSL on content.
Parameters
- string|bool $force
Return values
returns:True if forced, false if not forced.
Source code
function force_ssl_content( $force = '' ) { static $forced_content; if ( '' != $force ) { $old_forced = $forced_content; $forced_content = $force; return $old_forced; } return $forced_content; }
1086
No comments yet... Be the first to leave a reply!