Easy Custom Code
Add custom LESS, CSS, and JavaScript—plus external stylesheets and scripts—via the WP Customizer. No child theme required.
The facts
- Rating
- 5★ from 3
- Active installs
- 100+
- Price
- Free
- Last updated
- 23 Aug 2026
- Added
- Oct 2019
- Requires WP
- 5.3
- Tested up to
- WP 7.1
- Requires PHP
- 7.3
- Downloads
- 6,876
Our analysis
AI-assistedEasy Custom Code (LESS/CSS/JS) is a WordPress plugin that allows you to add custom LESS, CSS, and JavaScript directly through the WordPress Customizer. It compiles your code into minified CSS and JavaScript files, enabling you to manage your custom styling and scripts without needing a child theme or additional files.
This plugin is designed for ease of use, making it suitable for developers and users who want to enhance their website's appearance and functionality. You can control where JavaScript is placed for better performance and insert custom HTML in various key areas of your site.
Best for: This plugin is best suited for developers and users looking to customize their WordPress site with custom code.
What it does well
- ✓Allows adding custom LESS, CSS, and JavaScript easily
- ✓No need for a child theme or extra files
- ✓Minified CSS output option available
- ✓Control over JavaScript placement for performance
- ✓User-friendly interface for managing styles and scripts
Where it falls short
- •Limited information on advanced features
- •No details on support or documentation
Verdict
Easy Custom Code (LESS/CSS/JS) provides a straightforward way to add custom styles and scripts to your WordPress site, making it a useful tool for those familiar with coding.
From the developer
Yiannis Christodoulou's own description of Easy Custom Code, lightly tidied.
The Easy Custom Code WordPress Plugin lets you 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
<head>tag. - Immediately after the opening
<body>tag. - Before the closing
</body>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 - Inside the