Script Logic is a WordPress plugin that lets you control on which pages scripts and style sheets load using WP’s conditional tags. This plugin lists all JavaScripts and Style sheets with a control field that lets you control CSS & JavaScript files to include only on the pages where you actually need them. The text field lets you use WP’s Conditional Tags, or any general PHP code. NOTE: The script logic you introduce is evaluated directly. Anyone who has permission to manage options will have the right to add any code, including malicious and possibly destructive code. There is an optional filter ‘script_logic_eval_override’ which you can use to bypass the EVAL with your own code if needed. (See Other Notes). On plugin configuration page you see all script and CSS files with a logic field. Lets suppose you are using Contact Form 7 plugin. You created a page Contact Us (slug = contact-us) and want to include Contact Form 7 scripts only on this page. Find the Contact Form 7 scripts on plugin’s configuration page (they have handle = contact-form-7) and put `is_page(‘contact-us’)` in logic field Lets suppose you are using Contact Form 7 plugin. You created a page Contact Us (slug = contact-us) and want to include Contact Form 7 scripts only on this page. Step 1: Step 3: Introduction
Installation
Configuration
Usage Example
Find the Contact Form 7 JS and CSS on plugin’s configuration page (they have handle = contact-form-7).
Step 2:
Put is_page('contact-us') in logic field
Dance! You just excluded 2 files from all pages except your contact us page making your site load faster!!!
Script Logic Plugin
Introduction Script Logic is a WordPress plugin that lets you control on which pages scripts and style sheets load using WP’s conditional tags. This plug
Related posts
WordPress
Create a WordPress Form and Handle Submissions
Learn how to create a custom WordPress form without relying on a form builder plugin. This guide explains form submission handling, WordPress hooks, nonces, validation, sanitization, security best practices, database storage, email notifications, and common mistakes when building custom WordPress forms.
WordPress
Change WordPress login screen logo
Learn how to replace the default WordPress login screen logo with your own branding. This guide covers the classic CSS-injection method, the modern enqueue approach, and how to update the logo link and title for a fully white-labelled login page.
WordPress
Add remove Wordpress dashboard widgets
Learn how to add or remove WordPress dashboard widgets using wp_dashboard_setup and wp_add_dashboard_widget(). This guide covers removing unnecessary widgets, creating custom dashboard widgets, customizing dashboards for different users, and best practices for a cleaner WordPress admin experience.

