Variable: org-reverse-note-order
org-reverse-note-order is a customizable variable defined in
org.el.gz.
Value
nil
Documentation
Non-nil means store new notes at the beginning of a file or entry.
When nil, new notes will be filed to the end of a file or entry. This can also be a list with cons cells of regular expressions that are matched against file names, and values.
Source Code
;; Defined in /usr/src/emacs/lisp/org/org.el.gz
(defcustom org-reverse-note-order nil
"Non-nil means store new notes at the beginning of a file or entry.
When nil, new notes will be filed to the end of a file or entry.
This can also be a list with cons cells of regular expressions that
are matched against file names, and values."
:group 'org-capture
:group 'org-refile
:type '(choice
(const :tag "Reverse always" t)
(const :tag "Reverse never" nil)
(repeat :tag "By file name regexp"
(cons regexp boolean))))