ims_install

Description

The “ims_install” action runs before any install action has been initiated.

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

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

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

Example

// apply action
function action_ims_install( ) {
	 //run some action here
}
add_action('ims_install', 'action_ims_install');

Leave a Reply

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