Actions and filters of ShortPixel Image Optimizer

ShortPixel Image Optimiser calls the following actions and filters.

Successful optimization

This action is called upon successful optimization.

do_action( 'shortpixel_image_optimised', $post_id );

Pre-restore

This action is called before restoring an image from backup.

do_action("shortpixel_before_restore_image", $post_id);

Post-restore

This action is called after a successful restore.

do_action("shortpixel_after_restore_image", $post_id);

Backup folder

v5.0 and newer

Just before returning the ShortPixel backup folder (usually  /wp-content/uploads/ShortpixelBackups):

$directory = apply_filters("shortpixel/file/backup_folder", $directory, $file);

v4.22.10 and older

Just before returning the ShortPixel backup folder (usually /wp-content/uploads/ShortpixelBackups), where the  $sizes are the sizes array from metadata:

apply_filters("shortpixel_backup_folder", $backup_folder, $main_file_path, $sizes);

Post ID unset

v5.0 and newer

Post ID is not always set, only if it’s an image from Media Library:

apply_filters('shortpixel/file/exists', file_exists($path), $path, $post_id);

v4.22.10 and older

Post ID is not always set, only if it’s an image from Media Library:

apply_filters('shortpixel_image_exists', file_exists($path), $path, $post_id);

URL filter

This filters the URLs that will be sent to optimisation,  $URLs is a plain array:

apply_filters('shortpixel_image_urls', $URLs, $post_id);

Size of queries

Deprecated in v5.0 and newer

The  $chunk parameter is the value ShortPixel chooses to use as number of selected records in one query (based on total table size). Some hosts work better with a different value.

apply_filters('shortpixel/db/chunk_size', $chunk);

Parameters sent to API

This filters the parameters sent to the optimization API (via  $requestParameters), described in detail here: ShortPixel Reducer API$item_id contains the ID of the Media Library item or the ID of the Custom Media item (if used). In short, this filter can be used to change all parameters sent to the API, as needed. For example, you can set different resize parameters for different post types, different compression levels, remove EXIF or not, convert to WebP/AVIF and basically any other parameter sent to the API for a given image (along with all its thumbnails).

apply_filters('shortpixel/api/request', $requestParameters, $item_id);

Paths of images sent for backup

This filters the array of paths of the images sent for backup and can be used to exclude certain paths/images/thumbnails from being backed up, based on the image path.  $mainPath is the path of the main image, while $PATHs is an array with all the files to be backed up (including thumbnails).

apply_filters('shortpixel/backup/paths', $PATHs, $mainPath);

Ignore DB information when WebP/AVIF files have been deleted from disk

This filter is very useful in case some WebP/AVIF files have been deleted from the disk and ShortPixel is not aware of it. The plugin stores this information in the DB and therefore does not try to regenerate the missing files. If you use this filer the check of the DB is bypassed and the presence of the files is checked directly on the hard disk:

add_filter('shortpixel/image/filecheck', function () { return true; }); 

Exclude images from processing

This filters the array ($sizes) of image sizes which can be excluded from processing (displayed in the Advanced settings).

apply_filters('shortpixel/settings/image_sizes', $sizes);

Additional pages for background optimization

This filter enables the background ShortPixel processing in additional pages (see here the original list). Here's an example of this filter that enables the processing on the Comments screen (to be placed in your functions.php file):

add_filter('shortpixel/init/optimize_on_screens', function ($screens) {
	$screens[] = 'edit-comments';
	return $screens;
});

The edit-comments is the ID of the screen where you want to enable the processing.

If you want to add multiple pages, here's how the snippet looks like:

add_filter('shortpixel/init/optimize_on_screens', function ($screens) {
	$screens = array('edit-comments', 'plugins', 'another-custom-post-type-page');
	return $screens;
	});
Did this answer your question? Thanks for the feedback There was a problem submitting your feedback. Please try again later.

Still need help? Contact Us Contact Us