I have the following I’m trying to enqueue in functions.php
wp_enqueue_script( 'param-example', 'https://domain.com/example?f=j&s=w&c=t', array(), null );
Except WordPress is escaping the ampersands in the HTML which is breaking the script.
How can I prevent WordPress from escaping the URL in wp_enqueue_script
?
The other examples that seem close to this question haven’t worked.