WP_List_Table::display_rows() In this article Table of ContentsMore Information Source Related Changelog ↑ Back to top Generates the table rows. More Information 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(). Source public function display_rows() { foreach ( $this->items as $item ) { $this->single_row( $item ); } } View all references View on Trac View on GitHub Related UsesDescriptionWP_List_Table::single_row()wp-admin/includes/class-wp-list-table.phpGenerates content for a single row of the table. Used byDescriptionWP_List_Table::display_rows_or_placeholder()wp-admin/includes/class-wp-list-table.phpGenerates the tbody element for the list table. WP_List_Table::ajax_response()wp-admin/includes/class-wp-list-table.phpHandles an incoming ajax request (called from admin-ajax.php) wp_ajax_inline_save()wp-admin/includes/ajax-actions.phpHandles Quick Edit saving a post from a list table via AJAX. Changelog VersionDescription3.1.0Introduced. User Contributed Notes You must log in before being able to contribute a note or feedback.
User Contributed Notes
You must log in before being able to contribute a note or feedback.