Masonry is already registered by WordPress.
From wp-includes/script-loader.php
:
// Masonry v2 depended on jQuery. v3 does not. The older jquery-masonry handle is a shiv.
// It sets jQuery as a dependency, as the theme may have been implicitly loading it this way.
$scripts->add( 'masonry', "/wp-includes/js/masonry.min.js", array(), '3.1.2', 1 );
$scripts->add( 'jquery-masonry', "/wp-includes/js/jquery/jquery.masonry$dev_suffix.js", array( 'jquery', 'masonry' ), '3.1.2', 1 );
So your first wp_enqueue_script()
does not register masonry again. WordPress uses the already existing resource. plugins_url()
is not related, its value isn’t even used.
Related Posts:
- When should I use wp_register_script() with wp_enqueue_script() vs just wp_enqueue_script()?
- How can I get a list of all enqueued scripts and styles?
- Load CSS/Javascript in frontend conditionally if block is used
- How can I de-register ALL styles all at once? And same with Javascript?
- Cannot deregister a script using wp_deregister_script
- Removing specific style from wp_head
- How to dequeue / deregister any theme styles and scripts
- Using wp_enqueue_script on shortcode function handler
- Enqueue script only for IE
- Conditionally dequeue dependency of scripts
- wp_enqueue_script vs. wp_register_script
- Adding dependencies to script enqueing
- How to dequeue / deregister parent theme style
- Why is it wrong to use admin_print_scripts-{hook} to enqueue a script (.js) file?
- Enqueueing Scripts on a Custom Top-level Menu Page
- Enqueue script with url_query variables?
- How to switch css files according to devices and button click?
- Performance-wise, is it better to enqueue a (small) script on every page or test to see if it’s needed?
- Bootstrap js refuses to load
- Stop WordPress editor embedding links
- Enque Typekit Fonts – Not Found
- How to load script-related styles automatically?
- Notice: wp_enqueue_script was called incorrectly
- How to cancel `wp_print_scripts`?
- How do I enqueue a JavaScript in my footer via the functions.php file?
- Do we have to register JQuery if we want to use it in wp_enqueue_script()?
- wp_head() – list hooked actions with priorities?
- Retrieve URL of Script/Style and Dependencies
- using conditionals on enqueue styles
- 404 Error on trying to enqueue a JS file
- Including files in Child Themes
- Can’t load JS File
- Exclude external uri for css and js version
- Do I need to register my own created .js and .css files
- How to create a child theme with multiple css files.
- How to enqueu php files with custom variable & conditionals?
- Enqueue never runs
- Is there a way to list all the JavaScript scripts that are actually loaded by WordPress? Do we care?
- Unable to dequeue a plugin script. I think I’ve tried everything
- Action hooked on wp_enqueue_scripts running twice
- Styles and scripts inside template part
- How to enqueue the script without hardcoded in the theme files?
- Why is .map being added to the end of my file path?
- Wp_enqueue is not printing the version
- How can I properly enqueue tags in WordPress to use with Web Components?
- wp_enqueue_scripts wont load my scripts
- Enqueuing script is adding extra text for google maps [closed]
- get_stylesheet_directory() in child theme breaks parent scripts
- JavaScript enque stopped working
- Deregister multiple scripts using a function?
- Use of CONSTANT in wp_enqueue_script not possible?
- wp_enqueue_scripts are apearing inline rather than as links
- Load same stylesheet for front end and wp-admin
- How to remove all enqueued assets from the active theme?
- Not all my scripts are enqueueing
- browser showing connection was reset while accessing posts from local host
- wp_enqueue_script was called incorrectly Issue when active plugins of WordPress Admin Bar Improved
- wp_enqueue_scripts does not work
- How to add conditionals for IE browsers between certain versions?
- Should we explicitely enqueue jQuery and our theme’s main stylesheet?
- wp_enqueue_style referencing parent theme
- Loading Scripts For Specific Template
- Modular CSS and JS in Child Themes
- Enqueueing Scripts/Styles mid-page
- add WordPress script to page conditionally by category
- load jquery in footer not working
- I want to set global directory locations for my CSS and JS locations. How?
- Fatal error: Call to undefined function wp_enqueue_media()
- javascript file is not enqueing
- Enqueueing Scripts and Styles to page template that has html
- FullCalendar in WordPress is not working
- Calling wp_localize_script in a different function
- Check for Twitter Bootstrap Loaded
- How do you load js and style resources from CDN with local fallback using wp_enqueue_scripts?
- Stop a plugins js and css from loading on all pages and show up only where it is called
- wordpress enqueue script not working
- thickbox never gets called (weird behavior)
- Filter enqueued styles and scripts
- wp_enqueue_script was called incorrectly. Scripts and styles
- Unqueue css file from specific page
- Modifying an enqueued script URL
- Enqueue registered dependencies only when necessary
- Set a parent script presence status true so that child scripts load in wordpress
- wp_enqueue_scripts action from a plugin overrides theme wp_enqueue_scripts no matter what the priority setting
- Trouble with wp_enqueue_script
- Can’t get jquery script to work
- Proper use of wp_localize_script?
- Prevent caching when using wp_enqueue_script?
- Should I be enqueueing styles/scripts once and then dequeueing them?
- List all non-admin enqueued files
- How to load default wordpress scripts
- Generating embed code for users to share
- How do I display the handle for all front-end enqueued scripts in plugin options page?
- css3-mediaqueries-js failing with child theme
- Registering / Enqueing Scripts Not Working
- Enqueueing Script to footer puts it at the very bottom
- Bootstrap css not getting applied to the custom WordPress Dashboard Widget
- wp_script_is(‘enqueued’) true, but file not requested in HTML
- Why do WordPress adds the id=”handle-{js|css}” attribute to scripts and stylesheet?
- How to give path to files in plugins folder?