60,000+
May 19, 2026
November 12, 2012
Woody Code Snippets is a WordPress plugin that helps you insert code into your site without editing theme files.
Many WordPress users still add PHP, JavaScript, CSS, tracking pixels, or ad scripts directly into functions.php, header.php, or footer.php. This approach breaks easily when themes update and becomes hard to manage as your site grows.
Woody solves this by giving you a centralized code snippet manager where you can safely add header scripts, footer scripts, PHP snippets, custom CSS, JavaScript, and HTML from the WordPress admin.
You can use Woody as a header and footer code manager, a PHP snippet plugin, or a way to reuse content and scripts across your site using shortcodes or automatic insertion.
Each snippet can be enabled or disabled instantly, placed in specific locations like before content or after paragraphs, and shown only when certain conditions are met.
📘 Documentation – Complete setup and configuration guide
💬 Support Forum – Community help and expert support
⭐ Go Pro – Unlock advanced features and priority support
Woody is built for real WordPress workflows. It helps you:
Whether you are building client sites, running marketing experiments, or maintaining your own project, Woody gives you control without unnecessary complexity.
Woody lets you create code snippets and control where and when they run, all from the WordPress admin.
Create a JavaScript snippet and add your analytics or tracking code.
Place it in the site header and add a condition to exclude administrators so your own visits are not tracked.
Create a text snippet with reusable content or a shortcode.
Add conditions to show it only to logged-in users, then insert it anywhere using the snippet shortcode or automatic placement rules.
This makes it easy to manage repeated logic and content without editing theme files.
Woody is designed for:
If you regularly need to insert code into WordPress, Woody fits naturally into your workflow.
Woody supports multiple snippet types, so you can manage all custom code in one place. You can create:
Woody works as a full header and footer code manager.
You can insert snippets:
– Into the site header before the closing tag
– Into the site footer before the closing tag
Common examples include analytics scripts, tracking pixels, verification tags, and global JavaScript or CSS.
Beyond headers and footers, Woody lets you insert snippets into specific locations.
You can place code:
Woody supports automatic snippet placement on WooCommerce pages.
You can insert snippets:
Common use cases include conversion tracking, promotional banners, custom JavaScript, and trust notices.
Woody supports shortcodes so you can insert snippets exactly where you need them. You can place snippets inside posts, pages, widgets, and page builders.
With Pro, you can define custom shortcode names that are readable and portable across sites.
Woody allows you to control when a snippet is displayed.
[FREE] Available in the free version:
– User role and registration date
– Page, post type, or taxonomy
– Referrer or cookie value
[PRO] Advanced conditions available in Pro:
– Device type, browser, and operating system
– JavaScript availability or ad blocker detection
– User country, visit depth, time of day, and total visits
Conditions can be combined using AND and OR logic.
Unlock advanced conditions with Woody Pro.
Woody includes features to keep snippets organized and easy to manage.
You can:
– Enable or disable snippets instantly
– Control execution order using priorities
– Tag and clone snippets
– Import and export snippets between sites
With Pro, Woody automatically saves snippet revisions. You can view previous versions, compare changes, and restore earlier revisions if something goes wrong.
This adds an extra layer of safety when working with custom code.
Woody Pro includes cloud-based snippet templates.
You can save snippets as templates and reuse them across multiple sites, which is especially useful for agencies and developers managing repeated setups.
Woody includes advanced settings for fine-grained control.
You can:
The built-in editor includes:
– Syntax highlighting and line numbers
– Configurable indentation and tab size
– Optional line wrapping
– Automatic bracket and quote closing
– Highlighting of matching variables and functions
Woody allows you to run custom PHP, JavaScript, and CSS on your site. Always make sure you understand the code you add. Using unverified or outdated scripts may affect site security or stability. On multisite installations, only trusted administrators should have access to snippet creation.
Woody includes safeguards such as snippet disabling, revisions, and error notifications, but it cannot validate third-party code you choose to run.
Need help? Open a new thread in the WordPress support forum, and we will be happy to assist.
Learn how to make the most of Woody with our detailed and user-friendly documentation.
Woody is backed by Themeisle, trusted by over 1 million WordPress users worldwide.
/wp-content/plugins/plugin-name directory, or install the plugin through the WordPress plugins screen directly.Add a new attribute “simple” to the shortcode [wbcr_php_snippet id=”xx” simple=”example”].
The attribute “simple” is available in the snippet as the $simple variable. The attribute name can contain Latin letters and lowercase digits. You can also use underscore.
Don’t worry. Mistakes can happen, even with experienced users. Woody includes a Safe Mode that temporarily disables snippet execution so you can fix the issue.
Great, now you should not have any issues!
Pretty often we’d like to hide a part of a text or a form on particular pages and set up display conditions. You need to wrap the content you’d like to pass to a snippet with shortcodes [wbcr_php_snippet id=”xx” simple=”example”]page content[/wbcr_php_snippet]. Page content in a snippet is located in the $content variable.
Yes, it does. You can add there special blocks from our plugin.
The old version of Insert php 1.3.0 worked this way: you wrapped PHP code with shortcodes [insert_php]php code[/insert_php]. Starting from version 2.x.x and higher, you need to create special snippets to place PHP code. Use a snippet shortcode [wbcr_php_snippetid=”xx”] instead of shortcodes [insert_php][/insert_php] to execute PHP code on pages.
We recommend you to move all your code from the post editor to snippets.
Important! TinyMCE converts double quotes to special characters. So if you place this code on the snippet editor, it may not work. To avoid this problem, replace all special symbols of double quotes in your PHP code with classic double quotes.
You can find the detailed documentation in here.
Yes, the plugin is fully compatible with GDPR.
Go to the settings page and enable the “Complete uninstall” option. Than, when you delete Woody Code Snippets using the ‘Plugins’ menu in WordPress it will clean up the database table and a few other bits of data. Be careful not to remove Woody Code Snippets by deleting it from the Plugins menu unless you want this to happen.
You have to delete the folder with the plugin, which is located here: wp-content/plugins/insert-php
This will not clear the plugin data from the database. You have to remove the plugin through the admin panel with the “Full Uninstall” option enabled in order to completely clear the plugin data.
No, the snippets are stored in the WordPress database and are independent of the theme and unaffected by WordPress upgrades.
The plugin doesn’t support multi-sites setup.
Version 2.7.5 (2026-05-15)
Version 2.7.4 (2026-04-27)
Version 2.7.3 (2026-04-23)
Version 2.7.2 (2026-01-27)
Version 2.7.1 (2026-01-21)
Version 2.6.1 (2025-10-21)
Woody Snippets plugin has been acquired by Themeisle 🎉
We’re happy to announce that Themeisle is now the new owner of Woody Snippets. This acquisition will help ensure the plugin’s continued development, better support, and exciting new updates in the future.
Your existing setup will continue to work as usual — no action is required on your part.
Fixed a bug where you do not have enough permissions to view the page.
Attention! This new 2.0 plugin version, we added the ability to insert php code using snippets. This is a more convenient and secure way than using shortcodes [insert_php] code execute [/ insert_php]. However, for compatibility reasons, we left support for [insert_php] shortcodes, but we will depreciate them in the next versions of the plugin.
We strongly recommend you to transfer your php code to snippets and call them in your posts/pages and widgets using [wbcr_php_snippet id = “000”] shortcodes.
Fixed issue with str_replace() when haystack contained a slash character.
Changed handling of content.
Bug fix. Added ob_end_flush(); and changed variable names to remove opportunity for conflict with user-provided PHP code.
First public distribution version.
| Version | Download | Type |
|---|---|---|
| 2.7.5 | Download | Stable |
| 2.7.4 | Download | Stable |
| 2.7.3 | Download | Stable |
| 2.7.2 | Download | Stable |
| 2.7.1 | Download | Stable |
| 2.7.0 | Download | Stable |
| 2.6.1 | Download | Stable |
| 2.6.0 | Download | Stable |
| 2.4.10 | Download | Stable |
| 2.4.9 | Download | Stable |
| 2.4.8 | Download | Stable |
| 2.4.7 | Download | Stable |
| 2.4.6 | Download | Stable |
| 2.4.5 | Download | Stable |
| 2.4.4 | Download | Stable |
| 2.4.2 | Download | Stable |
| 2.3.10 | Download | Stable |
| 2.3.1 | Download | Stable |
| 2.2.9 | Download | Stable |
| 2.2.7 | Download | Stable |
| 2.2.4 | Download | Stable |
| 2.1.91 | Download | Stable |
| 2.0.6 | Download | Stable |
| 2.0.4 | Download | Stable |
| 1.3 | Download | Stable |
| Development | Download | Trunk |