iaff_before_bulk_updater

Action hook that is fired at the start of the Bulk Updater before updating any image.

do_action( 'iaff_before_bulk_updater' );

Fired when:

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 👎