/** * Setup instance for singleton * * @return WP_Fields_API */ public static function get_instance() { if (empty(self::$instance)) { self::$instance = new self(); } return self::$instance; }