Opened 6 years ago
Last modified 6 years ago
#44910 new feature request
function for discriminating during auto saving
Reported by: | mt8.biz | Owned by: | |
---|---|---|---|
Milestone: | Awaiting Review | Priority: | normal |
Severity: | trivial | Version: | |
Component: | Autosave | Keywords: | has-patch |
Focuses: | Cc: |
Description
I want a function to distinguish auto saving like wp_doing_cron or wp_doing_ajax.
The following code can be simplified.
before
if ( defined( 'DOING_AUTOSAVE' ) && DOING_AUTOSAVE ) { //do something }
after
if ( wp_doing_autosave() ) { //do something }
Attachments (1)
Change History (2)
Note: See
TracTickets for help on using
tickets.