Description
The “ims_update_screen_settings” action runs after the screen settings have been saved.
A plugin (or theme) can add an action with the code:
<?php add_action( 'ims_update_screen_settings', 'filter_function_name'); ?>
The hook is located in the image-store/_inc/admin.php file.
Example
// apply action function action_ims_update_screen_settings( $admin_url ) { //run action here } add_action('ims_update_screen_settings', 'action_ims_update_screen_settings');
Note: $admin_url is an string.