ims_settings

Description

The “ims_settings” action runs foreach setting tab, it allows you to add content to the tab-content area.

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

<?php add_action( 'ims_pricing_{$tab_id}_tab', 'filter_function_name'); ?>

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

Example

// apply action
function action_ims_settings( $boxid ) {
	//run action here
}
add_action('ims_settings', 'action_ims_settings');

Note:  $boxid is a string.


Leave a Reply

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