I need to modify the custom interview citation style from this post. The bibliography looks like it should. In the citation the authors name is given as "Given Family". However, the citation should look like the bibliography ("Family, Given"). How can I change that?
\RequirePackage{filecontents}
\begin{filecontents*}{\jobname.bib}
@interview{homer,
interviewee = {Homer Simpson},
interviewer = {Bart Simpson},
date = {2018-07-25},
address = {Springfield},
}
\end{filecontents*}
\begin{filecontents}{interview.dbx}
\DeclareDatamodelEntrytypes{interview}
\DeclareDatamodelFields[type=list,datatype=name]{
interviewer,
interviewee,
}
\DeclareDatamodelEntryfields[interview]{
addendum,
doi,
eprint,
eprintclass,
eprinttype,
interviewer,
interviewee,
location,
note,
pubstate,
}
\end{filecontents}
\documentclass[ngerman]{article}
\usepackage{babel}
\usepackage{csquotes}
\usepackage[datamodel=interview,backend=biber, style=verbose]{biblatex}
\usepackage{hyperref}
\addbibresource{\jobname.bib}
\NewBibliographyString{interview}
\DefineBibliographyStrings{german}{%
interview = {Interview},
}
\DeclareNameAlias{interviewee}{author}
\DeclareBibliographyDriver{interview}{%
\usebibmacro{bibindex}%
\usebibmacro{begentry}%
\printnames{interviewee}%
\newunit\newblock
\bibstring{interview}%
\setunit{\addspace}%
\printnames{interviewer}%
\setunit{\addcomma\space}%
\usebibmacro{date}%
\setunit{\addcomma\space}%
\printlist{location}%
\newunit\newblock
\printfield{note}%
\newunit\newblock
\usebibmacro{doi+eprint+url}%
\newunit\newblock
\usebibmacro{addendum+pubstate}%
\setunit{\bibpagerefpunct}\newblock
\usebibmacro{pageref}%
\newunit\newblock
\iftoggle{bbx:related}
{\usebibmacro{related:init}%
\usebibmacro{related}}
{}%
\usebibmacro{finentry}}
\newbibmacro*{cite:short:interview}{%
\usebibmacro{cite:full:citepages}%
\printtext[bibhyperlink]{%
\usedriver
{\DeclareNameAlias{sortname}{default}}
{\thefield{entrytype}}}}
\renewbibmacro*{cite:short}{%
\ifbibmacroundef{cite:short:\strfield{entrytype}}
{\printnames{labelname}%
\setunit*{\printdelim{nametitledelim}}%
\printtext[bibhyperlink]{%
\printfield[citetitle]{labeltitle}}}
{\usebibmacro*{cite:short:\strfield{entrytype}}}}
\begin{document}
Lorem\footcite{homer}
ipsum\footcite{homer}
\printbibliography
\end{document}



\DeclareNameAlias{sortname}{default}. – moewe Dec 16 '18 at 10:01cite:fullinstead, see the answer below. – moewe Dec 16 '18 at 10:12