ActionScheduler_wpPostStore::init()publicWC 1.0

(@codeCoverageIgnore)

Method of the class: ActionScheduler_wpPostStore{}

No Hooks.

Return

null. Nothing (null).

Usage

$ActionScheduler_wpPostStore = new ActionScheduler_wpPostStore();
$ActionScheduler_wpPostStore->init();

ActionScheduler_wpPostStore::init() code WC 8.7.0

public function init() {
	add_filter( 'action_scheduler_migration_dependencies_met', array( $this, 'migration_dependencies_met' ) );

	$post_type_registrar = new ActionScheduler_wpPostStore_PostTypeRegistrar();
	$post_type_registrar->register();

	$post_status_registrar = new ActionScheduler_wpPostStore_PostStatusRegistrar();
	$post_status_registrar->register();

	$taxonomy_registrar = new ActionScheduler_wpPostStore_TaxonomyRegistrar();
	$taxonomy_registrar->register();
}