AJAX makes easier to perform operations without submitting the form like – fetch, insert, delete records from MySQL database, file uploading, etc.
Using AJAX in WordPress is a little different. Here, need to consider two things –
- AJAX sent URL should be
admin-ajax.php
. wp_ajax
action hooks.
In this tutorial, I show how you can handle AJAX request in your WordPress theme.