Plugin info

Total downloads: 6,046
Active installs: 100
Total reviews: 3
Average rating: 5
Support threads opened: 0
Support threads resolved: 0 (0%)
Available in: 1 language(s)
Contributors: 1
Last updated: 1/31/2025 (334 days ago)
Added to WordPress: 10/11/2019 (6 years old)
Minimum WordPress version: 5.3
Tested up to WordPress version: 6.7.4
Minimum PHP version: 7.3

Maintenance & Compatibility

Maintenance score

Stale • Last updated 334 days ago • 3 reviews

40/100

Is Easy Custom Code (LESS/CSS/JS) – Live Editing abandoned?

Likely maintained (last update 334 days ago).

Compatibility

Requires WordPress: 5.3
Tested up to: 6.7.4
Requires PHP: 7.3

Similar & Alternatives

Explore plugins with similar tags, and compare key metrics like downloads, ratings, updates, support, and WP/PHP compatibility.

CiviCRM Admin Utilities
Rating 5.0/5 (6 reviews)Active installs 1,000
CTA Button Styles
Rating 5.0/5 (3 reviews)Active installs 400
Smart CSS Auto Loader
Rating 5.0/5 (6 reviews)Active installs 200
ACF WYSIWYG Styling
Rating 0.0/5 (0 reviews)Active installs 80
GOAT Contact Form 7 Style for Elementor
Rating 0.0/5 (0 reviews)Active installs 20
Adapter Gravity Add-On
Rating 5.0/5 (1 reviews)Active installs 10

Description

The Easy Custom Code WordPress Plugin easily customize your WordPress website by adding your own LESS, CSS, and JavaScript code directly via the built-in WP Customizer. With this plugin, there’s no need for a child theme or additional files. Simply insert your custom code, and it will be compiled into a minified CSS file for styles and a JavaScript file for scripts.

This lightweight plugin is designed for ease of use, providing a seamless and organized way to manage custom styling and scripts without affecting core theme files.

VIDEO (How it works?)

FEATURES

  • Easily add custom LESS, CSS, and JavaScript to your site.
  • Manage unlimited external stylesheets and scripts via a modal window.
  • Control JavaScript placement (head or footer) for optimized performance.
  • Insert custom HTML in key areas:
    • Inside the tag.
    • Immediately after the opening tag.
    • Before the closing tag.

PRO FEATURES

  • Minified CSS Output – Option to enable automatic minification of compiled CSS.
  • Full-Screen Editor – Maximize the code editor for a distraction-free coding experience.

What is LESS?

LESS is a CSS preprocessor that allows for variables, nested rules, mixins, and more, making your stylesheets more efficient and maintainable.

LESS code:

   @global_color: #FF0000;
   @global_font_size: 14px;
   @secondary_color: #CCC;

   body {
      color: @global_color;
      font-size: @global_font_size;
   }
   .container {
      color: @secondary_color;
      font-size: @global_font_size * 2;
   }

Outputs the following CSS:

   body {
      color: #FF0000;
      font-size: 14px;
   }
   .container {
      color: #CCC;
      font-size: 24px;
   }

For full LESS documentation, visit lesscss.org.

Demo

Try Demo
Username: demo
Password: demo

Installation

This plugin is simple to install:

  1. Download the easy-custom-code.zip file.
  2. Extract the contents.
  3. Upload the easy-custom-code directory to /wp-content/plugins/.
  4. Navigate to the Plugins page in WordPress and activate the plugin.
  5. Configure your settings under Settings > Easy Custom Code.

Frequently Asked Questions

Will my custom CSS and JS be deleted if I uninstall the plugin?

Yes, all custom LESS, CSS, and JavaScript added through this plugin will be deleted, including the compiled CSS file.

Why do I need this plugin?

This plugin allows you to quickly and efficiently add custom styling and scripts to your site without modifying theme files, creating a child theme, or manually enqueuing scripts.

Review feed

skapator
3/31/2020

Perfect plugin

Easiest way to add code on your site. This functionality is a must for any one. Well done.

Screenshots

  1. Add custom LESS/CSS styling directly from the WordPress Customizer.

    Add custom LESS/CSS styling directly from the WordPress Customizer.

  2. Insert custom JavaScript with ease.

    Insert custom JavaScript with ease.

  3. Manage external stylesheets.

    Manage external stylesheets.

  4. Add external scripts and choose their placement.

    Add external scripts and choose their placement.

  5. Insert custom HTML snippets in key sections (head, body open, body close).

    Insert custom HTML snippets in key sections (head, body open, body close).

  6. Full-screen editor mode for an enhanced coding experience.

    Full-screen editor mode for an enhanced coding experience.

  7. View and edit minified CSS for optimal performance.

    View and edit minified CSS for optimal performance.

  8. Plugin settings panel for easy configuration.

    Plugin settings panel for easy configuration.

Changelog

31-Jan-2025 : v1.1.2

  • Full compatibility with WordPress 6.7.x.

27-Nov-2024 : v1.1.1

  • Bug Fix: HTML entities (e.g., >, <) are now properly decoded.
  • Minor fixes and performance improvements.

12-Aug-2024 : v1.1.0

  • Bug Fix: LESS syntax errors for &:focus and &:hover resolved.

19-Jul-2024 : v1.0.9

  • Full compatibility with WordPress 6.6.x.
  • LESS CSS compiler updated to v0.8.0.
  • Minor fixes and improvements.

18-Apr-2024 : v1.0.8

  • Full compatibility with WordPress 6.5.x.
  • Minor fixes and improvements.

23-Oct-2023 : v1.0.7

  • Full compatibility with WordPress 6.3.x.
  • Minor fixes and improvements.

07-Jun-2023 : v1.0.6

  • Compatibility: Fully compatible with WordPress 6.2.
  • Minor fixes and improvements.

14-Jun-2022 : v1.0.5

  • Compatibility: Fully compatible with WordPress 6.0.
  • Minor fixes and improvements.

11-Feb-2022 : v1.0.4

  • Compatibility: Fully compatible with WordPress 5.9.
  • Minor fixes and improvements.

28-Jul-2021 : v1.0.3

  • Compatibility: Fully compatible with WordPress 5.8.
  • Minor fixes and improvements.

09-Apr-2021 : v1.0.2

  • Compatibility: Fully compatible with WordPress 5.7.
  • Minor fixes and improvements.

16-Oct-2019 : v1.0.1

  • New Feature: Add custom code in the head tag.
  • New Feature: Add custom code right after the body tag opens.
  • New Feature: Add custom code before the closing body tag.
  • Improvement: Unique CSS and JS file names for better cache handling.
  • Improvement: Removed the manual CSS file name option; now, files are generated dynamically.
  • Improvement: Enhanced language file (.pot) with additional strings.

08-Oct-2019 : v1.0.0

  • Initial beta release.