Generates the list table rows.
Source
public function display_rows() {
foreach ( $this->items as $item ) {
$this->single_row( $item );
}
}
Changelog
Version | Description |
---|---|
3.1.0 | Introduced. |
CARVIEW |
Generates the list table rows.
This loops through the items property and renders them to the page as table rows. Generally, you don’t need to call this explicitly as it is handled automatically on display().
public function display_rows() {
foreach ( $this->items as $item ) {
$this->single_row( $item );
}
}
Uses | Description |
---|---|
WP_List_Table::single_row()wp-admin/includes/class-wp-list-table.php | Generates content for a single row of the table. |
Used by | Description |
---|---|
WP_List_Table::display_rows_or_placeholder()wp-admin/includes/class-wp-list-table.php | Generates the tbody element for the list table. |
WP_List_Table::ajax_response()wp-admin/includes/class-wp-list-table.php | Handles an incoming ajax request (called from admin-ajax.php) |
wp_ajax_inline_save()wp-admin/includes/ajax-actions.php | Handles Quick Edit saving a post from a list table via AJAX. |
Version | Description |
---|---|
3.1.0 | Introduced. |
User Contributed Notes
You must log in before being able to contribute a note or feedback.