[ SYSTEM ]: Linux wordpress 6.1.0-44-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.164-1 (2026-03-09) x86_64
[ SERVER ]: Apache/2.4.66 (Debian) | PHP: 8.2.30
[ USER ]: www-data | IP: 172.19.30.54
GEFORCE FILE MANAGER
/
var
/
www
/
html
/
wordpress
/
wp-content
/
plugins
/
wp-optimize
/
templates
/
images
/
UPLOAD:
NAME
SIZE
QUICK PERMS
ACTIONS
📄 dimensions.php
2,302 B
SET
[ EDIT ]
|
[ DEL ]
📄 lazyload.php
3,051 B
SET
[ EDIT ]
|
[ DEL ]
📄 smush-details.php
949 B
SET
[ EDIT ]
|
[ DEL ]
📄 smush-popup.php
3,737 B
SET
[ EDIT ]
|
[ DEL ]
📄 smush.php
14,316 B
SET
[ EDIT ]
|
[ DEL ]
📄 unused.php
3,375 B
SET
[ EDIT ]
|
[ DEL ]
DELETE SELECTED
[ CLOSE ]
EDIT: smush-details.php
<?php if (!defined('WPO_VERSION')) die('No direct access allowed'); ?> <a class="wpo-collapsible"><?php esc_html_e('More', 'wp-optimize'); ?></a> <div class="wpo-collapsible-content"> <table class="smush-details"> <thead> <tr> <th><?php esc_html_e('Size name', 'wp-optimize'); ?></th> <th><?php esc_html_e('Original', 'wp-optimize'); ?></th> <th><?php esc_html_e('Compressed', 'wp-optimize'); ?></th> <th></th> </tr> </thead> <tbody> <?php foreach ($sizes_info as $size => $info) { $saved = round((($info['original'] - $info['compressed']) / $info['original'] * 100), 2); ?> <tr> <td><?php echo esc_html($size); ?></td> <td><?php echo esc_html(WP_Optimize()->format_size($info['original'], 1)); ?></td> <td><?php echo esc_html(WP_Optimize()->format_size($info['compressed'], 1)); ?></td> <td><?php echo esc_html($saved); ?>%</td> </tr> <?php } ?> </tbody> </table> </div>