iaff_after_bulk_updater

Action hook that is fired at the end of the Bulk Updater after updating all images.

do_action( 'iaff_after_bulk_updater' );

Fired when:

Example Usage

/**
 * Function that runs at the end of Image Attributes Pro Bulk Updater.
 * 
 * @link https://imageattributespro.com/codex/iaff_after_bulk_updater/
 */
function prefix_iap_do_after_bulk_updater() {
    // Things to do after running Bulk Updater. 
}
add_action( 'iaff_after_bulk_updater', 'prefix_iap_do_after_bulk_updater' );
Was this article helpful?
Yes, thanks! 👍Not really 👎