该插件尚未通过WordPress的最新3个主要版本进行测试。 当与较新版本的WordPress一起使用时,可能不再受到维护或支持,并且可能会存在兼容性问题。

MnCombine

描述

Finds all possible .js and .css files from a WP install available and allows you to combine and/or compress the files to reduce
load time. The plugin can monitor file changes in “development” mode (by hashing file mtime) which allows the plugin to
recompile the files when a file changes. Or, it can cache the files in “production” mode so that files are only recompiled
if they are not found or are deleted manually from the cache folder. Additionally, this plugin will allow you to force the
inclusion of javascript files into either the head or the foot of the page.

There are two modes, development and production, the ability to force the files to print in the header or footer*, the use of
Google Closure as a JS compiler, and finally the ability to pick and choose which files, including dependencies, should be combined.

*forcing head compiles can fail on JS files queued after the call to wp_head(). The plugin will, in this case, render the late
queued files in the footer as originally intended.

屏幕截图

  • Choose the compression settings and mode
  • Select which files to combine from a list of files available in your WP install, active plugins, and active theme
  • Total request of 17 uncompressed/combined files : 5136ms. 79.254kb of transfered data. Page load time 1.19s
  • Total request of 3 compressed/combined files : 578ms. 66kb of transfered data. Page load time 1.13s. Significantly more time is saved when comparing the browser cached results of the two requests.

安装

  1. Upload mncombine folder to the /wp-content/plugins/ directory
  2. 通过WordPress的的“Plugins”菜单激活插件
  3. Visit the admin panel and choose your options

常见问题

Why does the first compile take so long with Google Closure OR why is development mode so slow to recache with Google Closure?

Google Closure is a 3rd party JS compiler that the plugin must make requests to in order to receive compressed markup. And, because
we allow you to choose whether or not to combine some files we have to make multiple requests to the service to maintain dependency
inclusion. This results in a bit of latency when caching your files. However, in production mode, once the files are generated they
do not have to be regenerated again and load times are improved significantly. Using JSMin is much faster and recommended for use in
conjunction with development mode.

Can I exclude certain pages from using the plugin

As of version 1.1.0 you can exclude pages from compiling/compressing css or js files using a regular expression in the general
settings tab.

评价

2017 年 3 月 7 日
This plugin doesn't say it works with 4.7.3 but it does. It is a fantastic way to combine all those loose files and speed up your site. I hope the next version gets better sorting orders in the future as there are so many files. Can someone test this with the latest version of WordPress?
2016 年 9 月 3 日
I was getting very frustrated with trying to make my single site on a 48 processor VPS work quickly enough to be usable. I've tried several cache plugins with various settings. Any attempt to use Minify or combine with those broke the site. MNCombine works very easily. It WORKS! This is a must have plugin on any WordPress website. I'm adding it to all of my sites and I am going to gladly make a donation to the developer.
阅读所有20条评价

贡献者及开发者

“MnCombine” 是开源软件。 以下人员对此插件做出了贡献。

贡献者

将“MnCombine”翻译成您的语言。

对开发感兴趣吗?

您可以浏览代码,查看SVN仓库,或通过RSS订阅开发日志

更新日志

1.1.6

  • Admin page requires edit_posts capability

1.1.5

  • Skip checking when script handle is empty

1.1.4

  • Suppress errors on strstr($js, $use) when use is empty

1.1.3

  • Verified working on WP version 3.8.1

1.1.2

  • Verified against WP version 3.6.1
  • Removed warning on login page where wp_scripts is not set

1.1.1

  • Fixed Fatal Error on “Cache” admin page before cache folder had been generated

1.1.0

  • Added ability to not combine css files based on REQUEST_URI
  • Added ability to not combine js files based on REQUEST_URI

1.0.4

  • Fixed bug where plugin combined all css if no css files were selected

1.0.3

  • Option to compress css or not
  • Dependency bug fixed when opting not to combine js files that share dependencies with compressed files

1.0.0

  • The very first version in all it’s glory