This line has wrong syntax:
<?php if ( is_singular() ) wp_enqueue_script ( 'comment-reply'); wp_head() ; ?>
The call to wp_head()
should not be on the same line as the conditional for the comment-reply script.
Change it to this:
<?php
// Conditional to determine if comment-reply form script should be included
if ( is_singular() ) wp_enqueue_script ( 'comment-reply');
// Fire the `wp_head` hook, which should happen always, on every pageload
wp_head();
?>
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?
- Using wp_enqueue_script on shortcode function handler
- Get the list of enqueued/registered scripts for a specific post?
- Conditionally dequeue dependency of scripts
- 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?
- Remove a script from a template file using wp_dequeue_script
- 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?
- Enqueue script on specific WooCommerce template
- 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
- Performance-wise, is it better to enqueue a (small) script on every page or test to see if it’s needed?
- scripts not enqueueing
- Bootstrap js refuses to load
- Stop WordPress editor embedding links
- How can I make sure my JS script gets executed first, among other scripts?
- 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`?
- 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?
- How can I properly enqueue tags in WordPress to use with Web Components?
- 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
- 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
- add WordPress script to page conditionally by category
- 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?
- Fatal error: Call to undefined function wp_enqueue_media()
- javascript file is not enqueing
- 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)
- 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?
- Can’t get jquery script to work
- ajax jquery live search box not working in wordpress plugin
- Dealing with multiple Google maps API calls
- 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 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?
- Dequeue/deregister scripts for everybody but the administrator
- comment-reply.js is not loading
- How can I specifically enqueue scripts for edit orders pages only