WC_Admin::setup_wizard_check_jetpack()

Check on a Jetpack install queued by the Setup Wizard.


Description Description

See: WC_Admin_Setup_Wizard::install_jetpack()


Source Source

File: includes/admin/class-wc-admin.php

	public function setup_wizard_check_jetpack() {
		$jetpack_active = class_exists( 'Jetpack' );

		wp_send_json_success(
			array(
				'is_active' => $jetpack_active ? 'yes' : 'no',
			)
		);
	}

Top ↑

User Contributed Notes User Contributed Notes

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