Description
The “ims_after_slideshow” filter is used to add HTML to the end of the slideshow in the slideshow page or shortcode.
A plugin (or theme) can modify the output with the code:
<?php add_filter( 'ims_after_slideshow', 'filter_function_name'); ?>
The hook is located in the image-store/_store/slideshow.php file.
Example
// Apply filter function add_ims_after_slideshow( $output ) { return $output . "<p>my message</p>"; } add_filter('ims_after_slideshow', 'add_ims_after_slideshow');
Note: $output is a HTML string.