Skip to content
Advertisement

How to Load Ajax in WordPress

I’m familiar with using ajax in the ordinary way with jQuery.
I’ve played around it for a while, but don’t understand what WordPress needs to get it to work…
What I have here is taken from some tutorial or article.
This is in functions.php (in a child theme):

JavaScript

The jQuery itself is loading and working fine.

I have tried some basic ajax like the following:

JavaScript

Besides this, I don’t know how I can test to see if it’s even loaded correctly to begin with…

Any help here would be appreciated.

EDIT:
In firebug this error:

JavaScript

Advertisement

Answer

As per your request I have put this in an answer for you.

As Hieu Nguyen suggested in his answer, you can use the ajaxurl javascript variable to reference the admin-ajax.php file. However this variable is not declared on the frontend. It is simple to declare this on the front end, by putting the following in the header.php of your theme.

JavaScript

As is described in the WordPress AJAX documentation, you have two different hooks – wp_ajax_(action), and wp_ajax_nopriv_(action). The difference between these is:

  • wp_ajax_(action): This is fired if the ajax call is made from inside the admin panel.
  • wp_ajax_nopriv_(action): This is fired if the ajax call is made from the front end of the website.

Everything else is described in the documentation linked above. Happy coding!

P.S. Here is an example that should work. (I have not tested)

Front end:

JavaScript

Back end:

JavaScript

UPDATE Even though this is an old answer, it seems to keep getting thumbs up from people – which is great! I think this may be of use to some people.

WordPress has a function wp_localize_script. This function takes an array of data as the third parameter, intended to be translations, like the following:

JavaScript

So this simply loads an object into the HTML head tag. This can be utilized in the following way:

Backend:

JavaScript

The advantage of this method is that it may be used in both themes AND plugins, as you are not hard-coding the ajax URL variable into the theme.

On the front end, the URL is now accessible via ajax.url, rather than simply ajaxurl in the previous examples.

User contributions licensed under: CC BY-SA
4 People found this is helpful
Advertisement