You can use the script_loader_src
function to filter the URLs of scripts before they are output in a <script>
tag. I’d suggest something like this:
add_filter(
'script_loader_src',
function( $src, $handle ) {
// Only filter the specific script we want.
if ( 'google-recaptcha' === $handle ) {
// Add the argument to the exisitng URL.
$src = add_query_arg( 'hl', '<locale>', $src );
}
// Return the filtered URL.
return $src;
},
10, // Default priority.
2 // IMPORTANT. Needs to match the number of accepted arguments.
);
Just replace '<locale>'
with whichever locale you need, or a variable containing it.
Related Posts:
- wp enqueue inline script due to dependancies
- How do I dequeue a parent theme’s CSS file?
- Check if a script/style was enqueued/registered
- Is it possible to use wp_localize_script to create global JS variables without a specific script handle?
- How to load css in the footer [duplicate]
- Prevent Version URL Parameter (?ver=X.X.X) on Enqueued Styles & Scripts
- How can I enqueue protocol relative external (//ajax.googleapis.com/…) scripts?
- Can’t enqueue scripts in the footer?
- How can I remove the site URL from enqueued scripts and styles?
- wp enqueue script using scripts from cdn with a safety callback
- Can I add styles to footer with $wp_styles->add_data?
- Protocol neutral URLS with wp_enqueue_script (SSL issues)?
- Enqueue script in specific page
- How to en-queue bootstrap 4 to theme?
- Notice that the wp_enqueue_style is not being called correctly!
- Is it safe/recommended to use wp_enqueue_script function outside the functions.php file?
- wp_enqueue script my_javascript_file in the footer
- Hyphens vs. periods in the script slug in wp_register_script?
- jquery script not enqueued in child theme
- Is This The Most Efficient Way To Add Javascript Files?
- Why does this line of code make photo albums appear?
- Issue with using Underscore in WordPress
- Trying to load different syles for 404.php page
- Enqueue Script with URL parameters
- Track down where script is being enqueued from
- $wp_styles->registered not giving ALL the styles?
- Adding Custom Javascript to Skeleton Child Theme
- Remove specific CSS and JS from the head
- Enqueue scripts to a specific header-.php?
- Which are the MediaElement.js scripts to enqueue
- Best way to enqueue extremely popular scripts like bootstrap and font awesome
- How to remove some external js files from source?
- The wp_enqueue_scripts hook doesn’t work at all, not from plugin, not from the template, not for frontend, not for admin pages!
- Best spot for wp_register_script() and wp_register_style()
- wp_enqueue_script with dependencies doesn’t work
- Help with enqueing scripts in footer after init action
- Adding custom fonts (local) to WordPress?
- wp_enqueue_script order – external vs inline js
- Dequeuing scripts for all pages but the home page
- What are the advantages of using wp_enqueue_script()
- Modernizr check first, then move on to wp_register_script()/wp_enqueue_script
- Deregister scripts on unnecessary pages using remove_action
- Prioritizing wp enqueue scripts error
- wp_enqueue and Dependencies
- Why are files enqueued with wp_enqueue_style and wp_enqueue_script 404 Not Found?
- Utilizing WordPress’ Admin UI for plugin settings: getting accordion style
- jquery-ui-autocomplete is not loaded with wp_enqueue_script
- wp_enqueue_script Doesn’t Work?
- Getting wp_footer() to work without wp_head()
- wp localizing script not works
- Move scripts to footer, but exclude one script?
- Is there a way to list all the JavaScript scripts that are actually loaded by WordPress? Do we care?
- How to enqueue JavaScript file that depends on CSS stylesheet
- wp_editor() youtube link does not load video
- Enqueue customizer scripts that are bundled by webpack?
- Adding multiple wp_register_scripts for templates in WordPres?
- Localizing script to pass a value to a javascript function
- How do I get jQuery to Load before Bootstrap?
- Conditionally load script depending on current admin page
- Deregister multiple scripts using a function?
- Enqueuing a script before anything else
- Where to insert Google Maps API code in functions.php
- Should I use get_bloginfo(‘stylesheet_directory’) or get_stylesheet_directory_uri() when enqueueing my js files?
- wp_enqueue_script was called incorrectly Issue when active plugins of WordPress Admin Bar Improved
- wp_enqueue_scripts does not work
- How to add conditionals for IE browsers between certain versions?
- call my script only after loading UI library?
- Loading Scripts For Specific Template
- Modular CSS and JS in Child Themes
- All of my Scripts and Enques are getting file not found
- If a Script has been enqueued but not registered can I still removed it?
- include jquery plugin file not working
- why wp_enqueue_scripts() not working?
- How Do I Enqueue a Script into 2 different Footers on the Same Site?
- How to use wp_register_script / wp_enqueue_script for multiple queries
- Enqueue specific script on account creation (and never again)
- scripts not loading
- FullCalendar in WordPress is not working
- Wp_deregister_script() doesn’t work
- enqueue_scripts() in child theme doesn’t work
- How do you load js and style resources from CDN with local fallback using wp_enqueue_scripts?
- Issues with wp_enqueue_script and jquery-ui
- loading javascript CDN with local fallback (not jQuery)
- wp_localize_script & wp_enqueue_script not working in front end
- Dynamic wp_enqueue_scripts?
- wordpress enqueue script not working
- Load scripts only for selected template
- wp_enqueue_script error with `ID`, `post_title`, `post_name` of none object
- WordPress – enqueue js issue – page broken, no error
- Enqueue script with version number not working
- How to enqueue a script on a specific URL that contains multiple parts
- wp_enqueue_script silently fails [closed]
- correct path for enqueue script in WordPress
- map enqueue in backend
- How to get, in WP page’s script, a wp enqueued script (in Functions.php)?
- How to include a JS file in this theme?
- Most optimal way of starting fresh, without using other theme or dropping old files?
- Bootstrap sticky menu in WordPress
- Should I use wp_register_style(), wp_enqueue_style, or both?
- How to give path to files in plugins folder?