Changeset 41963 for trunk/src/wp-includes/default-filters.php
- Timestamp:
- 10/21/2017 01:21:24 PM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/default-filters.php
r41895 r41963 318 318 add_action( 'transition_post_status', '_update_term_count_on_transition_post_status', 10, 3 ); 319 319 add_action( 'comment_form', 'wp_comment_form_unfiltered_html_nonce' ); 320 add_action( 'wp_scheduled_delete', 'wp_scheduled_delete' );321 add_action( 'wp_scheduled_auto_draft_delete', 'wp_delete_auto_drafts' );322 320 add_action( 'admin_init', 'send_frame_options_header', 10, 0 ); 323 add_action( 'importer_scheduled_cleanup', 'wp_delete_attachment' );324 add_action( 'upgrader_scheduled_cleanup', 'wp_delete_attachment' );325 321 add_action( 'try_gutenberg_panel', 'wp_try_gutenberg_panel' ); 326 322 add_action( 'welcome_panel', 'wp_welcome_panel' ); 323 324 // Cron tasks 325 add_action( 'wp_scheduled_delete', 'wp_scheduled_delete' ); 326 add_action( 'wp_scheduled_auto_draft_delete', 'wp_delete_auto_drafts' ); 327 add_action( 'importer_scheduled_cleanup', 'wp_delete_attachment' ); 328 add_action( 'upgrader_scheduled_cleanup', 'wp_delete_attachment' ); 329 add_action( 'delete_expired_transients', 'delete_expired_transients' ); 327 330 328 331 // Navigation menu actions
Note: See TracChangeset
for help on using the changeset viewer.