woocommerce_product_bulk_and_quick_edit, $post_id, $post
woocommerce_product_bulk_and_quick_edit, $post_id, $post
Appears in: woocommerce.11.0.0
Hook Type: action
Displaying hooks found in version: woocommerce.11.0.0do_action('woocommerce_product_bulk_and_quick_edit, $post_id, $post') is found 1 times:
- /includes/admin/class-wc-admin-post-types.php line 347
* @param object $post Post object being saved. */ 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 ); } /** * Quick and bulk edit saving. *