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 = '' ) #


Parameters

$title

(string)(Optional)

Default value: ''


Top ↑

Source

File: wp-admin/includes/class-bulk-theme-upgrader-skin.php

	public function before( $title = '' ) {
		parent::before( $this->theme_info->display( 'Name' ) );
	}

The content displayed on this page has been created in part by processing WordPress source code files which are made available under the GPLv2 (or a later version) license by theĀ Free Software Foundation. In addition to this, the content includes user-written examples and information. All material is subject to review and curation by the WPPaste.com community.