WordPress includes the minified version of jQuery as jquery.js
rather than using jquery.min.js
. I don’t see any uncompressed version of it anywhere in the latest release of 3.5 (I’m looking at 3.5.3 right now).
They’ve made some other changes to how development and production assets are loaded. There are now several files that are *.dev.js
and *.dev.css
for use in development. These are the “regular” versions of those files, and the ones without .dev.
are the production/minified versions. An example of how this is used is at http://codex.wordpress.org/Editing_wp-config.php#Debug.
If you look through the wp-includes
and wp-admin
folders, you’ll see the previous method of providing the uncompressed file used in development along with the minified one for production use.
Related Posts:
- Add multiple plugin directories
- What are the differences between WPINC and ABSPATH?
- Where do I put the code snippets I found here or somewhere else on the web?
- Delete WordPress plugin Repository
- Giving Multiple Authors Access to a Plugin’s WP.org Repo
- Add section (add_settings_section) to a custom page (add_submenu_page)
- Creating a default Custom Post Template that a Theme can override
- Load plugin selectively for pages or posts, etc
- Multiple plugins vs combined one
- Can i create two tables at single time while installation of custom plugin?
- Custom plugin giving: wp-admin/admin-ajax.php 400 (Bad Request)
- How does WooCommerce display a custom comment_type in Comment Admin?
- Created Widget Not Showing up on Admin Panel
- How to display public user profile with 2 additional fields? (GitHub source code included)
- Action on post publish
- OOP: Display warning and deactivate the plugin if PHP version is less than 5.4
- wp_enqueue_scripts not working inside shortcode
- Handling jQuery Component Collision
- How to make my plugin GDPR compatible?
- Scope for PHP Variables Assigned in functions.php or a plugin
- How to make a custom field as an editor in wordpress?
- Why is an action callback function from an instance of a class always invoking the same function from an instance?
- How to keep users unique id stored in session in addition to IP in WordPress plugin?
- JS Support Ticket – Auto create WP account
- uninstall.php file in Plugin to clean DB
- Save / Show multi line text in metabox
- Python with wordpress plugin
- Passing an array from shortcode-function to filter-function
- WP_Async_Task doesn’t appear to be running asynchronously
- How to delete custom taxonomy terms in plugin’s uninstall.php?
- TinyMCE Styles Dropdown not adding html tags other than span
- add_filter doesn’t work
- How can I insert thousands of Woocommerce products by batch with PHP? [closed]
- What are the Best Practises When Using AJAX in Plugin Development?
- Setup wp_schedule_event within a custom plugin
- Run function on plugin activation before plugin is loaded
- execute function after one completed
- How can I run a custom shortcode function on a live site and only run if the viewer is a specific machine?
- How to Resize the Custom Post Images?
- Why is it important to check for isset and is_array before checking in_array in this example?
- Upload files to the plugin menu
- Class or function wrapper for plugin code
- Licensing a Plugin [closed]
- Add a function call after content automatically?
- Don’t load the theme for a page FROM a plugin EDITED
- WordPress Feed Creator Name Tag Full Name Instead Of First Name
- WordPress plugin with its own “site”/theme
- How to add custom function to pluggable.php
- Ajax request sends url rather than data
- Security of a WordPress Plugin
- Grouping imported products and showing variations based on selected product
- Remove Zero Money From Previews Order woocommerce
- How to display the category name in the tab and post inside the tab in WordPress?
- Access remote SFTP server via WordPress login?
- Shortcode do not return the right data in post
- Ultimate Members Default Post Layout problem
- best way to upload a large file to wordpress using wp all import
- Performance considerations – postmeta table versus new table for custom posts with foreign keys?
- How to define the slug for my custom plugin?
- Avoid WordPress header bar when form submission using admin_post in the frontend
- Set “Open in New tab” as default option
- Generate and send ICS file through WordPress
- Field salespeople task management
- Is it possible to create duplicate post on other site (either push, on publish, or pull, periodically)?
- Echo custom admin field into a is_single()
- WordPress Boilerplate Plugin doesn’t see callback functions for add_settings_field and add_settings_section
- Hide ‘add to cart’ button for some products [duplicate]
- Exclude specifed files from plugin editor
- Add Flatr button to Sharing option
- Change localization only for plugin
- How to get author developer link on plugin page
- wp_schedule_event need to deactivate plugin changing recurrance
- A more elegant way to handle notices/warnings
- Redirect default login page to a custom page [duplicate]
- appointment plugin doesn’t display all appointments
- Doing action based on input from options menu
- Create New Admin Menu Section – Like how custom post type works, in a way
- Customize Multi-Column Tag Map to fetch specific post-type
- Combining JS files to one script
- What are the downsides of using bootstrap in plugin development?
- How to generate a responsive output from plugin?
- The plugin generated xxx characters of unexpected output during activation
- WordPress Customise
- Predefine Product Variations for specific custom product type [closed]
- Create plugin with multiple blocks
- Custom wordpress plugin does not save select element
- How to set meta-data for my plugin
- WordPress isn’t sending welcome email with the password reset
- A splash page on landing page
- Inline AJAX script passing variables to PHP
- I’m getting the following error: Fatal error: Uncaught Error: Call to undefined function oil_paint_regeneration() [closed]
- how to code activate/deactive button of custom plugin within backend?
- move setting data from wordpress api to codestar freamwork
- How to access the page without registering in wordpress
- CPT template is not being automatically used single post pages
- How to trigger plugin migration code when plugin updates?
- How to Save Category and Delete Category in same Function
- claim a permalink and all sublinks in plugin
- Vanilla javascript in custom gutenberg block not working
- How to use `$order->get_discount_total()`, avoiding defoult WC decimal rounding?