wp_scheduled_auto_draft_delete
The WordPress Core wp scheduled auto draft delete hook.
Description
Parameters (1)
- 0. $wp_delete_auto_drafts (string) =>
'wp_delete_auto_drafts'
- The
wp
delete auto drafts.
Usage
- To run the hook, copy the example below.
- // run the action
- do_action( 'wp_scheduled_auto_draft_delete', $wp_delete_auto_drafts );
- The following example is for adding a hook callback.
- // define the wp_scheduled_auto_draft_delete callback
- function action_wp_scheduled_auto_draft_delete( $wp_delete_auto_drafts ) {
- // make action magic happen here...
- };
- // add the action
- add_action( 'wp_scheduled_auto_draft_delete', 'action_wp_scheduled_auto_draft_delete', 10, 1 );
- To remove a hook callback, use the example below.
- // remove the action
- remove_action( 'wp_scheduled_auto_draft_delete', 'action_wp_scheduled_auto_draft_delete', 10, 1 );
Defined (1)
The action is defined in the following location(s).
- /wp-includes/default-filters.php
- add_action( 'wp_scheduled_auto_draft_delete', 'wp_delete_auto_drafts' );