I would like to remove the "pages" attribute from .bib files.

I tried to pass \usepackage[usepages=false]{biblatex}, which seemed the logical way to do it, based on the documentation, but it does not work -- is it possible to disable them?
I would like to remove the "pages" attribute from .bib files.

I tried to pass \usepackage[usepages=false]{biblatex}, which seemed the logical way to do it, based on the documentation, but it does not work -- is it possible to disable them?
You can remove (disable) particular fields, lists or names with
\AtEveryBibitem{\clearfield{pages}}
Use \clear<type>{<typename>} where <type> stands for list or name and the <typename> is the name of the bibtex field you want to disable.
\AtEveryCitekey instead of \AtEveryBibitem.
– Rastapopoulos
Feb 13 '20 at 16:21
usepages=falseoption seems to be unknown forbiblatex– May 15 '15 at 00:07\clearfieldapplies. – moewe May 15 '15 at 05:23useauthor,useyear, and says to useuse<name>for other fields. But it does not work. – Ricardo Cruz May 16 '15 at 12:06