2

I'm creating a plugin that has some external Javascript and some AJAX calls ... but I don't know the best way to make reference to the admin-ajax.php file since the path requires some input from PHP (paths and such).

Should I declare a global javascript variable?

What is the best way to accomplish this?

1 Answer 1

1

What you need to do is register and/or enqueue your script and then use wp_localize_script to include a Javascript variable on your page. The Codex page has this example:

wp_enqueue_script( 'some_handle' );
$translation_array = array( 
    'some_string' => 
    __( 'Some string to translate' ), 
    'a_value' => '10' 
);
wp_localize_script( 'some_handle', 'object_name', $translation_array );

You can then access the variable with, to quote the same Codex page:

<script>
alert(object_name.some_string); // alerts 'Some string to translate'
</script>

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.