ims_after_post_actions

Description

The “ims_after_post_actions” action runs on a POST request, after all POST processes have been completed.

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

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

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

Example

// apply action
function action_ims_get_gallery_images( $ImStore ) {
	//run action here
}
add_action('ims_after_post_actions', 'action_ims_after_post_actions');

Note: $ImStore is the global store object.


Leave a Reply

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