Warning: This method has been deprecated.
WC_Admin_Setup_Wizard::setup_wizard_content()
Output the content for the current step.
Description Description
Source Source
File: includes/admin/class-wc-admin-setup-wizard.php
public function setup_wizard_content() {
echo '<div class="wc-setup-content">';
if ( ! empty( $this->steps[ $this->step ]['view'] ) ) {
call_user_func( $this->steps[ $this->step ]['view'], $this );
}
echo '</div>';
}
Changelog Changelog
| Version | Description |
|---|---|
| 4.6.0 | Introduced. |