The WordPress way to access PHP variables with JavaScript is to use wp_localize_script()
.
1 2 3 4 5 6 | function wpse_enqueue_scripts(){ wp_enqueue_script( 'wpse', PATH_TO . 'script.js' ); wp_localize_script( 'wpse', 'credentials', $credentials ); } add_action( 'wp_enqueue_scripts', 'wpse_enqueue_scripts' ); |
Then in your JavaScript, you can access the credentials like
1 | console.log( credentials ); |
If you like this question & answer and want to contribute, then write your question & answer and email to freewebmentor[@]gmail.com. Your question and answer will appear on FreeWebMentor.com and help other developers.