filters = new ThemeFilters(); $this->helpers = new ThemeHelpers(); $this->menus = new ThemeMenus(); //$this->shortcodes = new ThemeShortcodes(); $this->support = new ThemeSupport(); $this->sidebars = new ThemeSidebars(); } /** * @return Theme */ public static function get() { if (static::$instance === null) { static::$instance = new Theme(); } return static::$instance; } }