Get php var inside javascript file (making plugin)
You can use wp_localize_script() to pass php variables to javascript. You create an array in php and then pass it to the function as the third parameter. It will come through as an object you name with the second parameter. First, register the script. wp_register_script( ‘custom-name-js’, plugins_url( ‘assets/custom-js.php’, __FILE__ ) ); Second, build your array … Read more