I'm having trouble with my code.
I'd like the 2nd \parencite to also include the authors name.
The \DeclareCiteCommand is causing the authors name to be absent after the first cite
\documentclass{article}
\begin{filecontents}{\jobname.bib}
@misc{A01,
author = {Sutherland and Varnam},
year = {2001},
title = {Title},
}
\end{filecontents}
\usepackage[style=apa,backend=biber]{biblatex}
\addbibresource{\jobname.bib}
\DeclareCiteCommand{\parencite}[\mkbibparens]
{\usebibmacro{prenote}}
{\usebibmacro{citeindex}%
\printtext[bibhyperref]{\usebibmacro{cite}}}
{\multicitedelim}
{\usebibmacro{postnote}}
\usepackage{hyperref}
\begin{document}
First cite \parencite{A01}.
Second cite \parencite{A01}.
\printbibliography
\end{document}

\textcite. Note that that might not give exactly what you want w.r.t. the parentheses. Getting the links right there is much more complicated. If you want that you can ask a new question. – moewe Apr 08 '19 at 17:39\parenciteworked as I had wished. Now for the\textcite. As you mentioned @moewe, the right parentheses is not hyperlinked. How much more complicated would it be to solve this issue? – Socadillo Apr 20 '19 at 16:10\parencite, this implementation also hyperlinks the comma between the author's name and the year, which isn't standard. Is there a way to exclude it? – Monika Jun 18 '22 at 08:56