Bulk_Theme_Upgrader_Skin::before() WordPress Method
The Bulk_Theme_Upgrader_Skin::before() method is used to display a message before bulk upgrading a theme. This method is useful for displaying a message to the user before upgrading a theme. The message can be customized by passing a string to the method.
Bulk_Theme_Upgrader_Skin::before( string $title = '' ) #
Contents
Parameters
- $title
(string)(Optional)
Default value: ''
Source
File: wp-admin/includes/class-bulk-theme-upgrader-skin.php
public function before( $title = '' ) { parent::before( $this->theme_info->display( 'Name' ) ); }
Expand full source codeCollapse full source codeView on TracView on GitHub