For the complete documentation index, see llms.txt. This page is also available as Markdown.

Selection Ajax actions

In Advanced Views, every Post Selection is a smart entity, natively supporting the WordPress Ajax.

It enables you to create components that can send data and/or update themselves in the background without refreshing the page.

Server side:

To use this feature, we override the get_ajax_response() method inside the Selection Controller instance. The return value should be an array, which will be passed as JSON to the client.

Within the callback, you can use any WordPress functions. Furthermore, you can employ PHP-DI to get direct access to your theme classes.

Client side:

On the client side, as usual, we send requests to the admin-ajax.php file.

1. Rest Api vs. Ajax

Not sure about the difference between WordPress Ajax and REST API?

In most cases, we recommend using the REST API. It is much faster compared to the traditional admin-ajax.php requests, as it skips loading unnecessary WordPress parts - while still making all necessary WordPress functions available - as it is called during the WordPress init action.

If you need to work with authorized users, Ajax may be the simpler option, as it respects the auth cookie within requests; therefore, it doesn't require Request Authentication parts.

2. Selection Ajax example

JavaScript code

Incorporate the following function into your Post Selection's JavaScript code:

Selection Controller code

Incorporate the following function into your Selection Controller:

Last updated