예제 #1
0
 /**
  * Retrieve the class instance. If one hasn't been created yet, create it first.
  *
  * @return 	Reach_Theme
  * @static
  * @access 	public
  * @since   1.0.0
  */
 public static function get_instance()
 {
     if (is_null(self::$instance)) {
         self::$instance = new Reach_Theme();
     }
     return self::$instance;
 }