Theme_Installer_Skin::before
Performs an action before installing a theme.
Method of the class: Theme_Installer_Skin{}
No Hooks.
Returns
null. Nothing (null).
Usage
$Theme_Installer_Skin = new Theme_Installer_Skin(); $Theme_Installer_Skin->before();
Changelog
| Since 2.8.0 | Introduced. |
Theme_Installer_Skin::before() Theme Installer Skin::before code WP 6.9.1
public function before() {
if ( ! empty( $this->api ) ) {
$this->upgrader->strings['process_success'] = sprintf(
$this->upgrader->strings['process_success_specific'],
$this->api->name,
$this->api->version
);
}
}