WC_Admin_Post_Types::bulk_and_quick_edit_hook()publicWC 3.0.0

Offers a way to hook into save post without causing an infinite loop when quick/bulk saving product info.

Method of the class: WC_Admin_Post_Types{}

Return

null. Nothing (null).

Usage

$WC_Admin_Post_Types = new WC_Admin_Post_Types();
$WC_Admin_Post_Types->bulk_and_quick_edit_hook( $post_id, $post );
$post_id(int) (required)
Post ID being saved.
$post(object) (required)
Post object being saved.

Changelog

Since 3.0.0 Introduced.

WC_Admin_Post_Types::bulk_and_quick_edit_hook() code WC 8.7.0

public function bulk_and_quick_edit_hook( $post_id, $post ) {
	remove_action( 'save_post', array( $this, 'bulk_and_quick_edit_hook' ) );
	do_action( 'woocommerce_product_bulk_and_quick_edit', $post_id, $post );
	add_action( 'save_post', array( $this, 'bulk_and_quick_edit_hook' ), 10, 2 );
}