You can’t — URLs must have a protocol for WordPress to enqueue them. What you can do, though, is detect which protocol to use and then use that.
$protocol = is_ssl() ? 'https' : 'http';
$url = "$protocol://example.com/resource";
But for enqueuing scripts from your theme, you should use get_template_directory_uri() or get_stylesheet_directory_uri() which already handle SSL:
wp_enqueue_script('name', get_stylesheet_directory_uri() . '/js/name.pack.js');
Related Posts:
- Track down where script is being enqueued from
- When should I use wp_register_script() with wp_enqueue_script() vs just wp_enqueue_script()?
- 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
- How can I de-register ALL styles all at once? And same with Javascript?
- Cannot deregister a script using wp_deregister_script
- Conditional wp_enqueue_script on a page
- Enqueue custom font file with rel=”preload”
- Removing specific style from wp_head
- How to dequeue / deregister any theme styles and scripts
- Using wp_enqueue_script on shortcode function handler
- Enqueue script only for IE
- Conditionally dequeue dependency of scripts
- Problem in wp_localize_script
- wp_enqueue_script vs. wp_register_script
- Adding dependencies to script enqueing
- How to dequeue / deregister parent theme style
- Enqueued scripts and styles loading in WordPress Dashboard as well
- Why is it wrong to use admin_print_scripts-{hook} to enqueue a script (.js) file?
- Enqueueing Scripts on a Custom Top-level Menu Page
- Enqueue script with url_query variables?
- How to switch css files according to devices and button click?
- Performance-wise, is it better to enqueue a (small) script on every page or test to see if it’s needed?
- Bootstrap js refuses to load
- Stop WordPress editor embedding links
- 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`?
- How do I enqueue a JavaScript in my footer via the functions.php file?
- Do we have to register JQuery if we want to use it in wp_enqueue_script()?
- Including style.css in Child Theme
- wp_head() – list hooked actions with priorities?
- Enqueue Style for a page/pages only
- Retrieve URL of Script/Style and Dependencies
- using conditionals on enqueue styles
- debugging js scripts
- 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?
- Enqueue never runs
- Unable to dequeue a plugin script. I think I’ve tried everything
- Change script type and src of plugins in theme
- Action hooked on wp_enqueue_scripts running twice
- Styles and scripts inside template part
- 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?
- 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
- Use of CONSTANT in wp_enqueue_script not possible?
- wp_enqueue_scripts are apearing inline rather than as links
- Load same stylesheet for front end and wp-admin
- How to remove all enqueued assets from the active theme?
- Not all my scripts are enqueueing
- JavaScript is not enqueuing
- browser showing connection was reset while accessing posts from local host
- Should we explicitely enqueue jQuery and our theme’s main stylesheet?
- wp_enqueue_style referencing parent theme
- Enqueueing Scripts/Styles mid-page
- how to enqueue javascript to manipulate acf input field in admin?
- 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?
- Fatal error: Call to undefined function wp_enqueue_media()
- javascript file is not enqueing
- Calling wp_localize_script in a different function
- Check for Twitter Bootstrap Loaded
- is there a way to get all queued scripts/styles into a template without `get_header()`?
- thickbox never gets called (weird behavior)
- wp_enqueue_script was called incorrectly. Scripts and styles
- Unqueue css file from specific page
- Modifying an enqueued script URL
- Copy permalink to clipboard automatically when publish/update posts?
- WordPress wp_enqueue_style and wp_enqueue_script not working
- Stylesheets and scripts not loading
- Enqueue registered dependencies only when necessary
- 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
- Trouble with wp_enqueue_script
- Can’t get jquery script to work
- 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
- Generating embed code for users to share
- 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
- wp_script_is(‘enqueued’) true, but file not requested in HTML
- Why do WordPress adds the id=”handle-{js|css}” attribute to scripts and stylesheet?
- Dequeue/deregister scripts for everybody but the administrator