kasparsd/minit

A WordPress plugin to combine CSS and Javascript files

Installs: 360

Dependents: 0

Suggesters: 0

Security: 0

Stars: 289

Watchers: 31

Forks: 50

Open Issues: 12

Type:wordpress-plugin

1.5.0 2024-02-23 19:39 UTC

This package is auto-updated.

Last update: 2024-03-23 19:50:17 UTC


README

Install

Install using Composer:

composer require kasparsd/minit

or by manually downloading the latest release file.

How it Works

  • Concatenates all CSS files and Javascript files one file for each type, and stores them in the WordPress uploads directory under /minit. See the configuration section below for how to exclude files from the bundle.

  • Uses the combined version numbers of the enqueued assets to version the concatenated files.

  • Loads the concatenated Javascript file asynchronously in the footer. This will probably break all inline scripts that rely on jQuery being available. See the configuration section below for how to disable this.

  • Loads all external Javascript files asynchronously in the footer of the page.

Screenshots

  1. All CSS files combined in a single file
  2. All external Javascript files loading asynchronously

Configuration

See the Wiki for additional documentation.

Disable Asynchronous Javascript

Use the minit-script-tag-async filter to load the concatenated Javascript synchronously:

add_filter( 'minit-script-tag-async', '__return_false' );

Exclude Files

Use the minit-exclude-js and minit-exclude-css filters to exclude files from the concatenated bundles:

add_filter( 'minit-exclude-js', function( $handles ) {
    $handles[] = 'jquery';

    return $handles;
} );

Minit Addons

Credits

Created by Kaspars Dambis and contributors.