Description
The “ims_info_metabox” action runs after the gallery info metabox has render.
A plugin (or theme) can add an action with the code:
<?php add_action( 'ims_info_metabox', 'filter_function_name'); ?>
The hook is located in the image-store/admin/galleries/galleries-info.php file.
Example
// apply action function action_ims_info_metabox( $ImStore ) { //run some action here } add_action('ims_info_metabox', 'action_ims_info_metabox');
Note: $ImStore is the global Image Store object.