I was wondering if there is a way to redefine the abbreviated months with datetime2 package, such that, when using the command \today, months are written exactly like the first column of the image below.
\documentclass{article}
\usepackage[en-US]{datetime2}
\DTMlangsetup[en-US]{abbr}
\begin{document}
\today
\end{document}
There is already a solution---How to make a lowercase month name with \today---with datetime package to redefine the month style, but this package creates a confit with my document.
Thanks.

EDIT in light of @quark67's solution:
I identified the conflict using quark67's solution to be with \usepackage[USenglish]{babel}, used for hyphenation. I just had to remove the argument [USenglish] to make quark67's solution works, but I would still like to keep \usepackage[USenglish]{babel}.
SOLUTION
In reference to this post: Redefinition of \today -- Clash with babel, placing @quark67's code inside \AtBeginDocument{...} solved it.

\usepackage[USenglish]{babel}that I use for hyphenation. I just needed to remove the argument[USenglish]. I'm not sure how this will impact my document. Would you be able to work around this conflict? – AEW Mar 11 '23 at 20:03