Automattic\WooCommerce\Internal\CLI\Migrator\Lib

ImportSession::get_frontloading_progresspublicWC 1.0

Method of the class: ImportSession{}

No Hooks.

Returns

null. Nothing (null).

Usage

$ImportSession = new ImportSession();
$ImportSession->get_frontloading_progress();

ImportSession::get_frontloading_progress() code WC 10.7.0

public function get_frontloading_progress() {
	$meta = get_post_meta( $this->post_id, 'frontloading_progress', true );

	return $meta ? $meta : array();
}