}
    /**
     * Register taxonomy for custom post type.
     *
     * @since 1.0.0
     * @link  https://codex.wordpress.org/Function_Reference/register_taxonomy
     */
    public static function register_tax()
    {
        // Add new taxonomy, NOT hierarchical (like tags)
        $labels = array('name' => __('Team Groups', 'cherry-team'), 'singular_name' => __('Edit Group', 'cherry-team'), 'search_items' => __('Search Groups', 'cherry-team'), 'popular_items' => __('Popular Groups', 'cherry-team'), 'all_items' => __('All Groups', 'cherry-team'), 'parent_item' => null, 'parent_item_colon' => null, 'edit_item' => __('Edit Group', 'cherry-team'), 'update_item' => __('Update Group', 'cherry-team'), 'add_new_item' => __('Add New Group', 'cherry-team'), 'new_item_name' => __('New Group Name', 'cherry-team'), 'separate_items_with_commas' => __('Separate groups with commas', 'cherry-team'), 'add_or_remove_items' => __('Add or remove groups', 'cherry-team'), 'choose_from_most_used' => __('Choose from the most used groups', 'cherry-team'), 'not_found' => __('No groups found.', 'cherry-team'), 'menu_name' => __('Groups', 'cherry-team'));
        $args = array('hierarchical' => true, 'labels' => $labels, 'show_ui' => true, 'show_admin_column' => true, 'update_count_callback' => '_update_post_term_count', 'query_var' => true, 'rewrite' => array('slug' => 'group'));
        register_taxonomy('group', CHERRY_TEAM_NAME, $args);
    }
    /**
     * Returns the instance.
     *
     * @since  1.0.0
     * @return object
     */
    public static function get_instance()
    {
        // If the single instance hasn't been set, set it now.
        if (null == self::$instance) {
            self::$instance = new self();
        }
        return self::$instance;
    }
}
Cherry_Team_Registration::get_instance();