X-Git-Url: https://scripts.mit.edu/gitweb/autoinstalls/wordpress.git/blobdiff_plain/fa11948979fd6a4ea5705dc613b239699a459db3..85ad385665744d9cc3bcd939906309be7268edb3:/wp-admin/update.php diff --git a/wp-admin/update.php b/wp-admin/update.php index b89ada27..4290e58d 100644 --- a/wp-admin/update.php +++ b/wp-admin/update.php @@ -252,6 +252,15 @@ if ( isset($_GET['action']) ) { include(ABSPATH . 'wp-admin/admin-footer.php'); } else { - do_action('update-custom_' . $action); + /** + * Fires when a custom plugin or theme update request is received. + * + * The dynamic portion of the hook name, $action, refers to the action + * provided in the request for wp-admin/update.php. Can be used to + * provide custom update functionality for themes and plugins. + * + * @since 2.8.0 + */ + do_action( "update-custom_{$action}" ); } }