wp_ajax_fetch_list() WordPress Function
The wp_ajax_fetch_list function is used to fetch a list of items from a WordPress database. This function is used by the WordPress administration interface to retrieve a list of items from the database.
wp_ajax_fetch_list() #
Ajax handler for fetching a list table.
Source
File: wp-admin/includes/ajax-actions.php
function wp_ajax_fetch_list() { $list_class = $_GET['list_args']['class']; check_ajax_referer( "fetch-list-$list_class", '_ajax_fetch_list_nonce' ); $wp_list_table = _get_list_table( $list_class, array( 'screen' => $_GET['list_args']['screen']['id'] ) ); if ( ! $wp_list_table ) { wp_die( 0 ); } if ( ! $wp_list_table->ajax_user_can() ) { wp_die( -1 ); } $wp_list_table->ajax_response(); wp_die( 0 ); }
Expand full source codeCollapse full source codeView on TracView on GitHub
Changelog
Version | Description |
---|---|
3.1.0 | Introduced. |