You need to sign in or sign up before continuing.
Newer
Older
*
* @package External_Permalinks_Redux
*/
/**
* Singleton!
*
* @var self
*/
protected static $instance;
/**
* Instantiate class as a singleton.
*
* @return object
*/
public static function get_instance() {
if ( ! isset( static::$instance ) ) {
static::$instance = new static();
static::$instance->_setup();