예제 #1
0
파일: Kirki.php 프로젝트: IlhamFS/wordpress
 /**
  * Access the single instance of this class
  * @return Kirki
  */
 public static function get_instance()
 {
     if (self::$instance == null) {
         self::$instance = new Kirki();
     }
     return self::$instance;
 }