I have prepared the following MWE from the answer I found at formatting-back-references-in-bibliography. If the option backref=page is forwarded to hyperref with \hypersetup then the back references do not appear. But passing this option while calling the package works. Why is this?
MWE
\documentclass{article}
\usepackage[numbers]{natbib}
%\usepackage[backref=page]{hyperref}
\usepackage{hyperref}
\hypersetup{
backref=page
}
\usepackage{filecontents}
\begin{filecontents}{\jobname.bib}
@misc{A01,
author = {Author, A.},
year = {2001},
title = {Alpha},
}
@misc{B02,
author = {Buthor, B.},
year = {2002},
title = {Bravo},
}
\end{filecontents}
\begin{document}
Some text \citep{A01,B02}.
\clearpage
Some more text \citep{A01}.
\bibliographystyle{plainnat}
\bibliography{\jobname}
\end{document}