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>';
	}

Top ↑

Changelog Changelog

Changelog
Version Description
4.6.0 Introduced.


Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.