/** * Initiator */ public static function get_instance() { if (!isset(self::$instance)) { self::$instance = new Layers_Custom_Meta(); } return self::$instance; }
/** * Kicking this off with the 'custom_meta_init' hook */ function layers_custom_meta_init() { $layers_widget = new Layers_Custom_Meta(); $layers_widget->init(); }