Your syntax is wrong. The action must be defined outside of the callback.
Also, you are using plugin_dir_path()
function, which gets the path to plugin directoy in the filesystem of the server, not the url. You should use plugin_dir_url()
instead.
add_action( 'wp_enqueue_scripts', 'myplugin_load_script' );
function myplugin_load_script() {
wp_enqueue_script( 'myplugin-testjs', plugin_dir_url( __FILE__ ) . "scripts/myplugin-test.js", array('jquery'), null, true );
}
Related Posts:
- wp enqueue style on specific page templates
- How do I get the $handle for all enqueued scripts?
- How can I get a list of all enqueued scripts and styles?
- Load CSS/Javascript in frontend conditionally if block is used
- Register a script to be enqueued both in admin and front end
- Cannot deregister a script using wp_deregister_script
- Conditional wp_enqueue_script on a page
- Enqueue custom font file with rel=”preload”
- Why is jquery-ui-core enqueueing in my footer instead of the header?
- Get the list of enqueued/registered scripts for a specific post?
- Add script to footer – on post editor
- Which action to hook wp_enqueue_script to? wp_head or wp_enqueue_scripts? [duplicate]
- enqueue and localize script in footer
- Conditionally dequeue dependency of scripts
- What determines the order of enqueued styles?
- Wp_head and wp_footer vs wp_enqueue_script javascript files?
- Enqueue script only if page has an oembed
- It would be a right way to enqueue the script using foreach loop?
- Is this a bad implementation of wp_enqueue_script for conditional usage?
- Don’t load scripts if on mobile/tablet
- How to Add a Custom Script to Customize.php
- Remove a script from a template file using wp_dequeue_script
- wp_enqueue_script vs. wp_register_script
- Child Theme – what is the scope of overwriting files?
- Enqueue scripts to footer
- Add last modified time as version to css and js
- Enqueue script on specific WooCommerce template
- Custom Plugin Development: What priority should wp_enqueue_scripts have?
- Select2 in WordPress
- How to switch css files according to devices and button click?
- How to control the order of the combination of enqueued styles and scripts – site speed issue
- Register script/style: Is it possible to customize the version query string via plugin?
- scripts not enqueueing
- Asset loading with gulp.js or Grunt
- Enqueue AWS Script
- How can I make sure my JS script gets executed first, among other scripts?
- How to load script-related styles automatically?
- Optimizing WordPress’s styles and scripts
- How do I enqueue a js file in functions.php for a if lt IE 9 statement? [duplicate]
- How to enqueue a style using wp_enqueue_scripts()?
- How to cancel `wp_print_scripts`?
- wp_head() – list hooked actions with priorities?
- getting a js file for one page
- enqueue admin styling and scripts only on plugin page
- wp_enqueue_script called incorrectly
- How to change script order?
- Enqueue script multiple times?
- 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 add parameter to wp_enqueue_script?
- Change script type and src of plugins in theme
- How to enqueue the script without hardcoded in the theme files?
- Why is .map being added to the end of my file path?
- get_template_directory_uri() gives me wrong path when I try to use wp_enqueue_style
- Overwrite wp_enqueue_script under certain condition
- Enqueuing script is adding extra text for google maps [closed]
- Custom script file enqueue has “?ver=4.5.1” when loading and doesn’t update
- get_stylesheet_directory() in child theme breaks parent scripts
- Enqueueing Scripts and Styles
- Not all my scripts are enqueueing
- JavaScript is not enqueuing
- wp_enqueue_style referencing parent theme
- Enqueue scripts based on options
- How to use wp_enqueue_script, style when required
- Enqueue Script in WordPress
- how to enqueu customiser/customizer scripts?
- how to enqueue javascript to manipulate acf input field in admin?
- Plugin add_action and add_menu_page
- load a different stylesheet in a category post
- How to register script with null value for version?
- javascript file is not enqueing
- Calling wp_localize_script in a different function
- is there a way to get all queued scripts/styles into a template without `get_header()`?
- thickbox never gets called (weird behavior)
- Modifying an enqueued script URL
- How to do chunked JS files in WordPress?
- Copy permalink to clipboard automatically when publish/update posts?
- WordPress wp_enqueue_style and wp_enqueue_script not working
- Stylesheets and scripts not loading
- Scripts and stylesheets failing to load in Chrome IOS (and only Chrome IOS)
- i can’t handle any style or Js file on my theme . what is the problem of this file?
- Trouble with wp_enqueue_script
- Can’t get jquery script to work
- ajax jquery live search box not working in wordpress plugin
- Dealing with multiple Google maps API calls
- Prevent caching when using wp_enqueue_script?
- Should I be enqueueing styles/scripts once and then dequeueing them?
- How can I remove the site URL from enqueued scripts and styles?
- Initializing scripts in wordpress
- wp_enqueue_script was called incorrectly… i want to work with debug on
- Loop through arguments of a function
- How do I display the handle for all front-end enqueued scripts in plugin options page?
- css3-mediaqueries-js failing with child theme
- wp_enqueue_scripts hangs
- Using wp_enqueue_script in a wordpress plugin
- wp_script_is(‘enqueued’) true, but file not requested in HTML
- How to enqueue js script after another specific js script?
- Dequeue/deregister scripts for everybody but the administrator