Action hook that is fired at the start of the Bulk Updater before updating any image.
do_action( 'iaff_before_bulk_updater' );
Fired when:
- Bulk Updater is run using the
Bulk Updater
tab of Image Attributes Pro. - Bulk Updater is run programmatically.
- When images, posts, pages or products are updated using Bulk actions in WordPress admin.
Example Usage
/**
* Function that runs at the start of Image Attributes Pro Bulk Updater.
*
* @link https://imageattributespro.com/codex/iaff_before_bulk_updater/
*/
function prefix_iap_do_before_bulk_updater() {
// Things to do before running Bulk Updater.
}
add_action( 'iaff_before_bulk_updater', 'prefix_iap_do_before_bulk_updater' );
Was this article helpful?
Yes, thanks! 👍Not really 👎