Description
The “ims_widget_path” filter is used to modify the path to the php file that contains the widget object.
A plugin (or theme) can modify the path with the code:
<?php add_filter( 'ims_widget_path', 'filter_function_name' ); ?>
The hook is located in the image-store/_inc/store.php file.
Example
// Apply filter
function modify_ims_widget_path( $path ) {
return "path/to/php/file/to/display/my_widget_class.php";
}
add_filter('ims_widget_path', 'modify_ims_widget_path');
Note: $path is an string, full path to php file.
Leave a Reply