If you want to output a single line of javascript, you might not need to put it in a js file and go through enqueuing it and stuff. Simply output it by using the wp_footer()
action hook:
add_action('wp_footer','print_my_script');
function print_my_script(){
echo '<script> // Your script here </script>';
}
However, this is good just for small scripts. For larger script and js files, use wp_enqueue_script()
instead.
Related Posts:
- What does wp-embed.min.js do in WordPress 4.4?
- Move all the JS files to the bottom|footer, the right way
- wp_add_inline_script without dependency
- How to use wordpress default Password Strength Meter script
- What are the benefits of using wp_enqueue_script?
- wp_enqueue_script() not working at all
- How to dequeue a script?
- How to use wp_localize_script in custom page template?
- How to use Head JS with all enqueued scripts?
- wp_enqueue_script : how to change loading order of scripts?
- Remove extra Google Maps script
- How to add code to just before closing body tag
- What does wp-list.js do?
- Is it possible to enqueue the Youtube API script or does it have to be inline?
- Include jQuery UI as a whole
- How to echo JS right after enqueued script to put it into noConflict mode?
- Correct place to register and enqueue scripts
- Combine enqueue js without affecting dependencies
- How to add JS in footer
- Load multiple Javascript scripts
- WP script versioning breaks cross-site caching?
- wp_register_script multiple identifiers?
- require.js to load javascript
- How to add extra attributes to the script tag added via wp_localize_script()
- How do I enqueue(or delay loading of) tags in individual page posts?
- Javascript not included
- Javascript not working?
- wp_enqueue_script adds only the first script
- How to add JavaScript file using wp_enqueue_scripts?
- Is it mandatory to enqueue any kind of Javsacript?
- Only loads on the contact template page
- wp_enqueue_script & constants?
- wp_enqueue_scripts is not working in my plugin
- Problem in loading javascript in footer
- Exclude JS file from 404 error page
- Building a slide down search box in wordpress
- Enqueue script if screen is greater than 500
- Enqueue Javascript After ALL Other Scripts (Including Async Scripts)
- Enqueue js script to footer
- Enqueueing a script and a style sheet not working
- Adding a Javascript slideshow to the home page
- javascript conflict
- Media library not working with wp_editor() on the front end
- Weird links found in wordpress footer
- Override do_item() Function to Add Extra Attribute to Scripts
- How can I remove the WordPress-Version (?ver=5.x) from my plugin
- wp_enqueue_script not loading my custom js file
- Correctly enqueue scripts of type=text/paperscript (PaperJs Library)
- Scripts not loading through function Method in WordPress Theme
- How to execute Javascript on a WordPress page?
- Why is JavaScript being added to header as application/oembed?
- wp_enqueue_scripts not enqueing correctly
- Video script issue, JavaScript attribute remains ‘undefined’
- How can I load certain JavaScripts only on blog pages?
- On click load iframe [closed]
- Do I just put the html in a page when enqueueng or do I also have to reference js file from the html page [closed]
- Javascript asset not enqueuing with the rest
- Add crossorigin to SCRIPT tag
- Add script to page at certain location in wordpress
- WordPress wp_enqueue_script only adds text to top of page source
- Getting a variable inside foreach from PHP to JS after localization
- How do I know if I should enqueue JS code or just include it in ONE PHP function?
- get_header() in backend – but keep JavaScript and CSS files
- Absolutely print script in footer
- JavaScript Libraries in WordPress
- Failing to load my script files in wordpress! i can’t figure out what i’m doing wrong
- Setting Variable Path to Template Directory inside Script
- wp_enqueue_script does not recognize my js file?
- What to include to use jQuery UI Auto Complete
- Bootstrap bundle present in page source but not working
- Dynamically add Js
- JS / jQuery in Elementor pages vs JS file
- Load JavaScript on specific page with @wordpress compiler
- How to load Javascript code or functions.php later in a child theme?
- Enqueued script fails
- How to pass data to javascript in custom widget class
- Loading two versions of same JS libary
- Proper way of minifiying java script files in wordpress theme
- Escaping quotes while enqueuing scripts
- How to register or enqueue script and stop it being called in head?
- How to correctly load this jquery script through the file functions.php?
- Adding javascript script to header via functions.php
- How to delay display of page elements until enqueued script has injected html
- load-scripts.php loads incorrect file names
- Enqueue concatinated JS file in WordPress
- wp_enqueue_scripts doesn’t work for template pages
- Javascript file doesn’t load
- early enqueueing javascript file in page template, not in functions.php
- Dequeue set-post-thumbnail.min.js
- jQuery + more won’t load in header
- WOW.js Script Tag Initialization Header/Footer
- JS enqueue path (localhost)
- Why can’t I load JS script in a plugin?
- Script loaders vs wp_enqueue_script
- convertEntities() used before it is defined
- JavaScript file successfully registered but does not render correctly
- wp_enqueue has a resource but doesn’t generate a script tag [duplicate]
- Orbit Slider and Events Manager Plug-in JavaScript
- How to load JavaScript modules with script_loader_tag hook?
- How to securely set dynamic HTML content with JavaScript?