In the sidebar theme from beamer, how can one replace the author with the subtitle? I found the .sty file for sidebar, and another posts describes removing the author (and title) from the sidebar, and I know the subtitle can be inserted using \insertsubtitle, but I can't figure out how to combine both these insights.
MWE
\documentclass{beamer}
\useoutertheme{sidebar}
\title{Supply and Demand}
\subtitle{Econ 101}
\author{Dr. Economist}
\institute{College of Dreams}
\date{\today}
\begin{document}
\begin{frame}{Frame title}
\begin{itemize}
\item This is some text.
\item Some more text.
\end{itemize}
\end{frame}
\end{document}

\author[short here]{Dr.\ Economist}– Sigur Feb 09 '17 at 00:25