WC_Abstract_Privacy::register_exporters( array $exporters = array() )

Integrate this exporter implementation within the WordPress core exporters.


Description Description


Parameters Parameters

$exporters

(Optional) List of exporter callbacks.

Default value: array()


Top ↑

Return Return

(array)


Top ↑

Source Source

File: includes/abstracts/abstract-wc-privacy.php

	public function register_exporters( $exporters = array() ) {
		foreach ( $this->exporters as $id => $exporter ) {
			$exporters[ $id ] = $exporter;
		}
		return $exporters;
	}

Top ↑

User Contributed Notes User Contributed Notes

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