Disable Client Side Media

外掛說明

WordPress can process media uploads in the browser, resizing and compressing images on your own device before they are sent to the server. This plugin turns that off, so uploads fall back to the traditional server-side path.

There is nothing to configure – activate the plugin and client-side media processing is off. It is a single filter:

add_filter( 'wp_client_side_media_processing_enabled', '__return_false' );

Useful when you want to compare server-side and client-side upload behavior, or when a site needs the server-side path for consistency.

安裝方式

  1. Upload the plugin files to the /wp-content/plugins/disable-client-side-media directory, or install the plugin through the WordPress plugins screen directly.
  2. Activate the plugin through the “Plugins” screen in WordPress.

常見問題集

Are there any settings?

No. Activating the plugin disables client-side media processing; deactivating it restores the default behavior.

Does this change existing media?

No. It only affects how new uploads are processed.

使用者評論

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

參與者及開發者

以下人員參與了開源軟體〈Disable Client Side Media〉的開發相關工作。

參與者

將〈Disable Client Side Media〉外掛本地化為台灣繁體中文版

對開發相關資訊感興趣?

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

變更記錄

1.0.1

  • Add plugin banner and icon assets for the plugin directory.

1.0.0

  • Initial release.