Title: Encute
Author: Mark Jaquith
Published: <strong>26 ਅਕਤੂਬਰ 2021</strong>
Last modified: 17 ਫਰਵਰੀ 2022

---

ਪਲੱਗਇਨਾਂ ਖੋਜੋ

![](https://ps.w.org/encute/assets/banner-772x250.png?rev=2620522)

This plugin **hasn’t been tested with the latest 3 major releases of WordPress**.
It may no longer be maintained or supported and may have compatibility issues when
used with more recent versions of WordPress.

![](https://ps.w.org/encute/assets/icon-256x256.png?rev=2620522)

# Encute

 [Mark Jaquith](https://profiles.wordpress.org/markjaquith/) ਵੱਲੋਂ

[ਡਾਊਨਲੋਡ ਕਰੋ](https://downloads.wordpress.org/plugin/encute.0.8.8.zip)

 * [ਵੇਰਵਾ](https://pan.wordpress.org/plugins/encute/#description)
 * [ਸਮੀਖਿਆਵਾਂ](https://pan.wordpress.org/plugins/encute/#reviews)
 * [ਵਿਕਾਸ](https://pan.wordpress.org/plugins/encute/#developers)

 [ਸਹਿਯੋਗ](https://wordpress.org/support/plugin/encute/)

## ਵੇਰਵਾ

Encute provides a fluent, declarative API for site owners to manipulate the scripts
and styles that WordPress, themes, and plugins shove onto their site. Move things
into the footer, defer loading, remove assets entirely. Or load scripts async, or
as modules, or as nomodule!

Here’s an example of how you could use the plugin:

    ```
    <?php

    use CWS\Encute\{ Plugin, Script, Style };

    add_action(Plugin::class, function (Plugin $plugin) {
        $isContactPage = fn () => is_page('contact');
        Script::get('contact-form-7')->keepIf($isContactPage)->footer()->defer();
        Style::get('contact-form-7')->keepIf($isContactPage)->footer()->defer();

        Style::get(['mediaelement', 'wp-mediaelement'])->footer()->defer();
        Style::get('material-icons')->defer();
        Script::get('jquery')->remove();
    });
    ```

### Wrapper

Always run code in this wrapper:

    ```
    add_action(\CWS\Encute\Plugin::class, function (\CWS\Encute\Plugin $encute) {
        // Your code here.
    });
    ```

This wrapper will be a no-op if Encute is not available, and it will both wait for
Encute to be available to run, and pass you Encute’s main class instance.

### Fluency

Both `Script::get()` and `Style::get()` return an instance of themselves, as do 
all calls to their methods, so you can just chain your calls.

### Script

 * `static CWS\Encute\Script::get(string $handle): CWS\Encute\Script` — get a Script
   instance for that handle.
 * `CWS\Encute\Script::module(): CWS\Encute\Script` — make the script a module.
 * `CWS\Encute\Script::noModule(): CWS\Encute\Script` — make the script nomodule.
 * `CWS\Encute\Script::footer(): CWS\Encute\Script` — send the script to the footer(
   along with its entire dependency family).
 * `CWS\Encute\Script::async(): CWS\Encute\Script` — make the script async.
 * `CWS\Encute\Script::defer(): CWS\Encute\Script` — make the script defer.
 * `CWS\Encute\Script::remove(): CWS\Encute\Script` — remove the script.
 * `CWS\Encute\Script::removeIf(callable $callback): CWS\Encute\Script` — remove
   the script if the callback resolves as true.
 * `CWS\Encute\Script::keepIf(callable $callback): CWS\Encute\Script` — keep the
   script if the callback resolves as true (else remove it).

### Style

 * `static CWS\Encute\Style::get(string $handle): CWS\Encute\Style` — get a Style
   instance for that handle.
 * `CWS\Encute\Style::footer(): CWS\Encute\Style` — send the style to the footer(
   along with its entire dependency family).
 * `CWS\Encute\Style::defer(): CWS\Encute\Style` — defer the style’s loading.
 * `CWS\Encute\Style::remove(): CWS\Encute\Style` — remove the style.
 * `CWS\Encute\Style::removeIf(callable $callback): CWS\Encute\Style` — remove the
   style if the callback resolves as true.
 * `CWS\Encute\Style::keepIf(callable $callback): CWS\Encute\Style` — keep the style
   if the callback resolves as true (else remove it).

## ਸਕਰੀਨਸ਼ਾਟ

 * [[
 * Code generation inside the plugin.

## ਅਕਸਰ ਪੁੱਛੇ ਜਾਂਦੇ ਸਵਾਲ

### How do I use this?

Go to Tools > Encute and you’ll be guided through code generation.

### Can’t I do this through a UI?

Not currently. This is a pro-level tool. You need to know what you’re doing. If 
writing code isn’t for you, then this plugin probably isn’t for you.

## ਸਮੀਖਿਆਵਾਂ

![](https://secure.gravatar.com/avatar/013fd021aeb178ed6e14273f5729b815e8c53fa17d7c3e0a07163e7c0bbf8edc?
s=60&d=retro&r=g)

### 󠀁[Useful tool](https://wordpress.org/support/topic/useful-tool-98/)󠁿

 [a2d](https://profiles.wordpress.org/a2d/) 12 ਦਸੰਬਰ 2021

Given 4 stars because early days with this plugin, but it does it’s job and gives
full control of scripts/styles which many free plugins don’t. There’s a few points
that might not be clear from the documentation: The ‘plugin’ requires PHP 7.4 or
higher If you don’t have a directory at /wp-content/mu-plugins then create one and
put encute.php in it At first, tick the “Show debug HTML comments around scripts
and styles” checkbox. This outputs useful comments around script and style blocks
with the handle of each. You need this handle to set up ‘rules’. The plugin works
fine and the code generation tool is useful, but doesn’t remember ‘rules’ you add.
Would be useful if the plugin had a link (in new window) to the plugin description
page for code reference

 [ Read all 1 review ](https://wordpress.org/support/plugin/encute/reviews/)

## ਯੋਗਦਾਨੀ ਤੇ ਵਿਕਾਸਕਾਰ

“Encute” is open source software. The following people have contributed to this 
plugin.

ਯੋਗਦਾਨੀ

 *   [ Mark Jaquith ](https://profiles.wordpress.org/markjaquith/)

[“Encute” ਦਾ ਆਪਣੀ ਭਾਸ਼ਾ ਵਿੱਚ ਅਨੁਵਾਦ ਕਰੋ।](https://translate.wordpress.org/projects/wp-plugins/encute)

### ਵਿਕਾਸ ਕਾਰਜ ਵਿੱਚ ਰੁਚੀ ਰੱਖਦੇ ਹੋ?

[Browse the code](https://plugins.trac.wordpress.org/browser/encute/), check out
the [SVN repository](https://plugins.svn.wordpress.org/encute/), or subscribe to
the [development log](https://plugins.trac.wordpress.org/log/encute/) by [RSS](https://plugins.trac.wordpress.org/log/encute/?limit=100&mode=stop_on_copy&format=rss).

## ਮੈਟਾ

 *  Version **0.8.8**
 *  Last updated **4 ਸਾਲ ਪਹਿਲਾਂ**
 *  Active installations **20+**
 *  WordPress version ** 5.8 ਜਾਂ ਇਸ ਤੋਂ ਉੱਚਾ **
 *  Tested up to **5.8.13**
 *  PHP version ** 7.4 ਜਾਂ ਇਸ ਤੋਂ ਉੱਚਾ **
 *  Language
 * [English (US)](https://wordpress.org/plugins/encute/)
 * Tags
 * [performance](https://pan.wordpress.org/plugins/tags/performance/)[scripts](https://pan.wordpress.org/plugins/tags/scripts/)
   [styles](https://pan.wordpress.org/plugins/tags/styles/)
 *  [Advanced View](https://pan.wordpress.org/plugins/encute/advanced/)

## ਦਰਜਾਬੰਦੀ

 4 out of 5 stars.

 *  [  0 5-star reviews     ](https://wordpress.org/support/plugin/encute/reviews/?filter=5)
 *  [  1 4-star review     ](https://wordpress.org/support/plugin/encute/reviews/?filter=4)
 *  [  0 3-star reviews     ](https://wordpress.org/support/plugin/encute/reviews/?filter=3)
 *  [  0 2-star reviews     ](https://wordpress.org/support/plugin/encute/reviews/?filter=2)
 *  [  0 1-star reviews     ](https://wordpress.org/support/plugin/encute/reviews/?filter=1)

[Your review](https://wordpress.org/support/plugin/encute/reviews/#new-post)

[See all reviews](https://wordpress.org/support/plugin/encute/reviews/)

## ਯੋਗਦਾਨੀ

 *   [ Mark Jaquith ](https://profiles.wordpress.org/markjaquith/)

## ਸਹਿਯੋਗ

ਕੁਝ ਕਹਿਣਾ ਹੈ? ਮਦਦ ਚਾਹੀਦੀ ਹੈ?

 [ਸਹਿਯੋਗ ਫੋਰਮ ਦੇਖੋ](https://wordpress.org/support/plugin/encute/)