LLMS_Site::get_lock_url()
Get the lock url for the current site gets the WP site url and adds the lock string to it
Description Description
Return Return
(string)
Source Source
File: includes/class.llms.site.php
public static function get_lock_url() { $site_url = get_site_url(); return substr_replace( $site_url, self::$lock_string, strlen( $site_url ) / 2, 0 ); }
Expand full source code Collapse full source code View on GitHub
Changelog Changelog
Version | Description |
---|---|
3.0.0 | Introduced. |