Docs: Update the hook docs for update_bulk_theme_complete_actions.

See #42505


git-svn-id: https://develop.svn.wordpress.org/trunk@42677 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
John Blackbourn
2018-02-09 16:21:04 +00:00
parent 209baca2ca
commit dc28b0d31d

View File

@@ -16,7 +16,7 @@
* @see Bulk_Upgrader_Skin
*/
class Bulk_Theme_Upgrader_Skin extends Bulk_Upgrader_Skin {
public $theme_info = array(); // Theme_Upgrader::bulk() will fill this in.
public $theme_info = array(); // Theme_Upgrader::bulk_upgrade() will fill this in.
public function add_strings() {
parent::add_strings();
@@ -55,8 +55,8 @@ class Bulk_Theme_Upgrader_Skin extends Bulk_Upgrader_Skin {
*
* @since 3.0.0
*
* @param array $update_actions Array of theme action links.
* @param array $theme_info Array of information for the last-updated theme.
* @param array $update_actions Array of theme action links.
* @param WP_Theme $theme_info Theme object for the last-updated theme.
*/
$update_actions = apply_filters( 'update_bulk_theme_complete_actions', $update_actions, $this->theme_info );