This document discusses how to use AJAX in WordPress. It explains that AJAX allows asynchronous retrieval of data from a server without reloading the entire page. It describes how AJAX works in WordPress by making a jQuery call that is routed by WordPress and processed by a theme, plugin, or core function that returns HTML or JSON. It outlines the necessary components, including JavaScript/jQuery, a WordPress hook, and a function to handle the request and return data. Finally, it provides details on implementing AJAX calls in both the front-end and admin areas of WordPress.