Expanding @RRikesh comment, you might have enqueued/loaded the bootstap.js
with same handle theme-js
. So only one script gets enqueued.
Try to use different handle for example nav-sidebar
. See the following code. Also it’s recommended to use prefix, here I used wpse
. Also use get_template_directory_uri
instead of get_stylesheet_directory_uri()
if it’s not a child theme.
function wpse_sidebar () {
wp_enqueue_script('nav-sidebar', get_template_directory_uri() . '/js/nav-sidebar.js',array( 'jquery' ),'1.0.0',true );
}
add_action('wp_enqueue_scripts', 'wpse_sidebar');
Related Posts:
- How to en-queue bootstrap 4 to theme?
- How do I enqueue a js file in functions.php for a if lt IE 9 statement? [duplicate]
- Check for Twitter Bootstrap Loaded
- 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?
- Using wp_enqueue_script on shortcode function handler
- 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
- 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
- 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
- How can I make sure my JS script gets executed first, among other scripts?
- How to load script-related styles automatically?
- How to cancel `wp_print_scripts`?
- wp_head() – list hooked actions with priorities?
- Retrieve URL of Script/Style and Dependencies
- wp_enqueue_script called incorrectly
- using conditionals on enqueue styles
- 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 enqueu php files with custom variable & conditionals?
- 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
- browser showing connection was reset while accessing posts from local host
- 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
- I want to set global directory locations for my CSS and JS locations. How?
- How to register script with null value for version?
- is there a way to get all queued scripts/styles into a template without `get_header()`?
- thickbox never gets called (weird behavior)
- Bootstrap and jQuery error: $ is not defined
- 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)
- wp_enqueue_scripts action from a plugin overrides theme wp_enqueue_scripts no matter what the priority setting
- i can’t handle any style or Js file on my theme . what is the problem of this file?
- ajax jquery live search box not working in wordpress plugin
- Dealing with multiple Google maps API calls
- Bootstrap with separate js File
- Proper use of wp_localize_script?
- 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 get my theme scripts to load in a custom theme built from Bootstrap
- How do I display the handle for all front-end enqueued scripts in plugin options page?
- css3-mediaqueries-js failing with child theme
- Enqueueing Script to footer puts it at the very bottom
- wp_enqueue_scripts hangs
- Using wp_enqueue_script in a wordpress plugin
- How to enqueue js script after another specific js script?
- Should I use wp_register_style(), wp_enqueue_style, or both?
- How to give path to files in plugins folder?