這個外掛並未在最新的 3 個 WordPress 主要版本上進行測試。開發者可能不再對這個外掛進行維護或提供技術支援,並可能會與更新版本的 WordPress 產生使用上的相容性問題。

Startklar Image Optimizer

外掛說明

This plugin allows you to optimize images from your media library and thus improve the SEO performance of your site.
This plugin is based on the JPEGOPTIM utility and PNGQUANT utility which must be installed on your host.
The essence of our plugin is that when it starts, it sorts through all the attachments for the articles of your WP-site
and processes them right at the place where they are located.
After that, the attachment is marked as processed, which prevents it from being processed again.
In the admin page you can view the total number of your images and the number of processed images,
as well as select the number of images to be processed in one cycle.
At the moment, the script for optimization is made in the form of a standard wp-action (its name is “startklar_image_optimizer_process”)
that can be called from another place.

Here is an example of how to call this action:
do_action( ‘startklar_image_optimizer_process’ );

For example, for a simple implementation, you can use the “WP Crontrol” plugin (https://ru.wordpress.org/plugins/wp-crontrol/)
by which you can create a cron task that can optimize one image every minute.
This tactic was chosen in order to process all the files of the site without introducing excessive load to the site
(since the native cron in WP is activated by hits and has a runtime limit, like similar http sessions of this host).

Screenshot #1 shows how easy it is to set up a cron-task.

螢幕擷圖

  • How easy it is to set up a cron-task.

安裝方式

Plugin installation.
Installation is done as standard for WP. Install “WP Crontrol” plugin in addition if you need to run cron optimization.

Plugin setup.
The setup interface is as simple and intuitive as possible.
Go to the admin page and make sure you have the JPEGOPTIM utility and the PNGQUANT utility installed.
Use the admin page to view statistics and select how many images, are processed per cycle.
Usage.
Create a new cron task for the action “startklar_image_optimizer_process” in the plugin “WP Crontrol”.
Screenshot #1 shows how easy it is to set up a cron-task.

常見問題集

How can I check that the plugin is configured and working correctly?

You can temporarily activate debug mode in WordPress.

define( ‘WP_DEBUG’, true );
define( ‘WP_DEBUG_LOG’, true );

‘WP_DEBUG’ is a PHP constant (a permanent global variable) that can be used to trigger the debug mode throughout WordPress.
‘WP_DEBUG_LOG’ – When set to true, the log is saved to debug.log in the content directory (usually /wp-content/plugins/startklar_image_optimizer/debug.log) within your sites filesystem. Alternatively, you can set it to a valid file path to have the file saved elsewhere.

Now you can see lines like this in your log file:

START OPTIMIZATION 14.06.2022 18:25:18
_wp_attachment_metadata id=26
PROCESS FILEC:\xampp1\htdocs\my-wp/wp-content/uploads/2022/06/pexels-jhovani-morales-12319997-200×300.jpg BY jpegoptim
END
After processing, the source file should reduce in size, it’s not difficult to track.
After checking, return the constants that are responsible for debugging to their original state.

使用者評論

這個外掛目前沒有任何使用者評論。

參與者及開發者

以下人員參與了開源軟體〈Startklar Image Optimizer〉的開發相關工作。

參與者

將〈Startklar Image Optimizer〉外掛本地化為台灣繁體中文版

對開發相關資訊感興趣?

任何人均可瀏覽程式碼、查看 SVN 存放庫,或透過 RSS 訂閱開發記錄

變更記錄

1.0

  • First Release