Your uses of wp_register_script
and add_action
are incorrect. Try the following code:
function you_fancy_js(){
wp_register_script( 'custom-script', plugins_url( '/js/jquery.js', __FILE__ ), array( 'jquery', 'jquery-ui-core', 'jquery-validate' ) );
wp_enqueue_script( 'custom-script' );
}
add_action('wp_enqueue_scripts','you_fancy_js');
This assumes that your custom jQuery functions are in jquery.js
and jquery
, jquery-ui-core
, and jquery-validate
are already enqueued. You do not need admin_head
. The admin equivalent of wp_enqueue_scripts
is admin_enqueue_scripts
.
Related Posts:
- When should I use wp_register_script() with wp_enqueue_script() vs just wp_enqueue_script()?
- Check if a script/style was enqueued/registered
- How to properly dequeue scripts and styles in child theme?
- Cannot deregister a script using wp_deregister_script
- How to dequeue / deregister any theme styles and scripts
- Hyphens vs. periods in the script slug in wp_register_script?
- enqueue and localize script in footer
- How to Add a Custom Script to Customize.php
- wp_enqueue_script vs. wp_register_script
- Child Theme – what is the scope of overwriting files?
- Best way to enqueue extremely popular scripts like bootstrap and font awesome
- Best spot for wp_register_script() and wp_register_style()
- wp_enqueue_script with dependencies doesn’t work
- Register script/style: Is it possible to customize the version query string via plugin?
- Help with enqueing scripts in footer after init action
- Modernizr check first, then move on to wp_register_script()/wp_enqueue_script
- How to cancel `wp_print_scripts`?
- Including style.css in Child Theme
- getting a js file for one page
- Can’t see why my scripts aren’t loading when I register and enqueue them
- Including files in Child Themes
- WordPress script file version numbers changing in live environment
- Change script type and src of plugins in theme
- How to enqueue JavaScript file that depends on CSS stylesheet
- Adding multiple wp_register_scripts for templates in WordPres?
- Localizing script to pass a value to a javascript function
- Enqueuing script is adding extra text for google maps [closed]
- Deregister multiple scripts using a function?
- wp_enqueue_scripts does not work
- Modular CSS and JS in Child Themes
- If a Script has been enqueued but not registered can I still removed it?
- How to use wp_register_script / wp_enqueue_script for multiple queries
- How to register script with null value for version?
- Using wp_enqueue_script on scripts that contain PHP
- Stop a plugins js and css from loading on all pages and show up only where it is called
- Enqueue registered dependencies only when necessary
- How to get, in WP page’s script, a wp enqueued script (in Functions.php)?
- wp_enqueue doesn’t load dependencies
- Why do WordPress adds the id=”handle-{js|css}” attribute to scripts and stylesheet?
- Dequeue/deregister scripts for everybody but the administrator
- How do I dequeue a parent theme’s CSS file?
- Is it possible to use wp_localize_script to create global JS variables without a specific script handle?
- How can I enqueue protocol relative external (//ajax.googleapis.com/…) scripts?
- Can’t enqueue scripts in the footer?
- How can I remove the site URL from enqueued scripts and styles?
- Loading a script with a dependency, is unloading another script’s dependency
- wp enqueue script using scripts from cdn with a safety callback
- Enqueue script in specific page
- How to en-queue bootstrap 4 to theme?
- Notice that the wp_enqueue_style is not being called correctly!
- Is This The Most Efficient Way To Add Javascript Files?
- wp_register_script multiple identifiers?
- Trying to load different syles for 404.php page
- Enqueue Script with URL parameters
- Remove specific CSS and JS from the head
- Use js script from one plugin in another plugin
- Which are the MediaElement.js scripts to enqueue
- Adding jQuery dependency prevents my script from enqueuing/loading
- How resource intensive is wp_register_script()?
- Adding custom fonts (local) to WordPress?
- wp_enqueue_script order – external vs inline js
- Dequeuing scripts for all pages but the home page
- is_page() function doesnt working
- Which jQueryUI handles are predefined in wordpress?
- Deregister scripts on unnecessary pages using remove_action
- Prioritizing wp enqueue scripts error
- wp_enqueue and Dependencies
- How do you enqueue a Visual Basic script using wp_enqueue_script?
- Why are files enqueued with wp_enqueue_style and wp_enqueue_script 404 Not Found?
- Loading scripts with wp_register_script and wp_enqueue_script
- jquery-ui-autocomplete is not loaded with wp_enqueue_script
- wp_enqueue_script Doesn’t Work?
- wp localizing script not works
- Move jQuery to the bottom of the page whilst keeping the WordPress jQuery
- Is It Possible to add JS AFTER the Enqueue within the same Function?
- Is there a way to check for an attribute of a script when using script_loader_tag?
- How can I manually enqueue plugin scripts
- How can I properly enqueue wp-hooks without issues?
- Enqueue customizer scripts that are bundled by webpack?
- Dequeue script conditonnally
- How do I get jQuery to Load before Bootstrap?
- Conditionally load script depending on current admin page
- How to enqueue default scripts with dependency?
- call my script only after loading UI library?
- All of my Scripts and Enques are getting file not found
- Adding Pinterest Script Before Closing Body Tag
- admin_enqueue_scripts not rending JS file correctly
- How Do I Enqueue a Script into 2 different Footers on the Same Site?
- how to load css and js based on post template
- link to JS library using wp_enqueue_scripts not working
- Enqueue specific script on account creation (and never again)
- Proper enqueue for child theme functions.php
- loading javascript CDN with local fallback (not jQuery)
- Failing to load my script files in wordpress! i can’t figure out what i’m doing wrong
- Dynamic wp_enqueue_scripts?
- Why do I have to specify all parameters for wp_enqueue_script to load my jquery in the footer? [closed]
- Load scripts only for selected template
- wp_enqueue_script error with `ID`, `post_title`, `post_name` of none object
- How to enqueue a script on a specific URL that contains multiple parts
- wp_enqueue_script silently fails [closed]