Description
The “fun_pre_get_images” action runs before getting the images.
A plugin (or theme) can add an action with the code:
<?php add_action( 'fun_pre_get_images', 'filter_function_name' ); ?>
The hook is located in the file-un-attach/_inc/admin.php and file-un-attach/_inc/front.php files.
Example
// apply action function action_fun_pre_get_images() { //run some code here } add_action('fun_pre_get_images', 'action_fun_pre_get_images');
Leave a Reply