}
    /**
     * Adds a custom single template for a 'Team' post.
     *
     * @since 1.0.0
     */
    public function get_single_template($template)
    {
        global $post;
        if ($post->post_type == CHERRY_TEAM_NAME) {
            $template = trailingslashit(CHERRY_TEAM_DIR) . 'templates/single-team.php';
        }
        return $template;
    }
    /**
     * 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_Templater::get_instance();