WC_Post_Data::init()public staticWC 1.0

Hook in methods.

Метод класса: WC_Post_Data{}

Хуков нет.

Возвращает

null. Ничего (null).

Использование

$result = WC_Post_Data::init();

Код WC_Post_Data::init() WC 8.7.0

public static function init() {
	add_filter( 'post_type_link', array( __CLASS__, 'variation_post_link' ), 10, 2 );
	add_action( 'shutdown', array( __CLASS__, 'do_deferred_product_sync' ), 10 );
	add_action( 'set_object_terms', array( __CLASS__, 'force_default_term' ), 10, 5 );
	add_action( 'set_object_terms', array( __CLASS__, 'delete_product_query_transients' ) );
	add_action( 'deleted_term_relationships', array( __CLASS__, 'delete_product_query_transients' ) );
	add_action( 'woocommerce_product_set_stock_status', array( __CLASS__, 'delete_product_query_transients' ) );
	add_action( 'woocommerce_product_set_visibility', array( __CLASS__, 'delete_product_query_transients' ) );
	add_action( 'woocommerce_product_type_changed', array( __CLASS__, 'product_type_changed' ), 10, 3 );

	add_action( 'edit_term', array( __CLASS__, 'edit_term' ), 10, 3 );
	add_action( 'edited_term', array( __CLASS__, 'edited_term' ), 10, 3 );
	add_filter( 'update_order_item_metadata', array( __CLASS__, 'update_order_item_metadata' ), 10, 5 );
	add_filter( 'update_post_metadata', array( __CLASS__, 'update_post_metadata' ), 10, 5 );
	add_filter( 'wp_insert_post_data', array( __CLASS__, 'wp_insert_post_data' ) );
	add_filter( 'oembed_response_data', array( __CLASS__, 'filter_oembed_response_data' ), 10, 2 );
	add_filter( 'wp_untrash_post_status', array( __CLASS__, 'wp_untrash_post_status' ), 10, 3 );

	// Status transitions.
	add_action( 'transition_post_status', array( __CLASS__, 'transition_post_status' ), 10, 3 );
	add_action( 'delete_post', array( __CLASS__, 'delete_post' ) );
	add_action( 'wp_trash_post', array( __CLASS__, 'trash_post' ) );
	add_action( 'untrashed_post', array( __CLASS__, 'untrash_post' ) );
	add_action( 'before_delete_post', array( __CLASS__, 'before_delete_order' ) );
	add_action( 'woocommerce_before_delete_order', array( __CLASS__, 'before_delete_order' ) );

	// Meta cache flushing.
	add_action( 'updated_post_meta', array( __CLASS__, 'flush_object_meta_cache' ), 10, 4 );
	add_action( 'updated_order_item_meta', array( __CLASS__, 'flush_object_meta_cache' ), 10, 4 );
}