ims_after_uninstall

Description

The “ims_after_uninstall” action runs after the Image Store has been completely uninstalled.

A plugin (or theme) can add an action with the code:

<?php add_action( 'ims_after_uninstall', 'filter_function_name'); ?>

The hook is located in the image-store/admin/install.php file.

Example

// apply action
function action_ims_after_uninstall( ) {
	 //run some action here
}
add_action('ims_after_uninstall', 'action_ims_after_uninstall');

Leave a Reply

Your email address will not be published. Required fields are marked *