WP_Links_List_Table::display_rows() WordPress Method
The WP_Links_List_Table::display_rows() method is used to display the rows of a table. It takes an array of objects as its parameter.
WP_Links_List_Table::display_rows() #
Source
File: wp-admin/includes/class-wp-links-list-table.php
	public function display_rows() {
		foreach ( $this->items as $link ) {
			$link                = sanitize_bookmark( $link );
			$link->link_name     = esc_attr( $link->link_name );
			$link->link_category = wp_get_link_cats( $link->link_id );
			?>
		<tr id="link-<?php echo $link->link_id; ?>">
			<?php $this->single_row_columns( $link ); ?>
		</tr>
			<?php
		}
	}
Expand full source codeCollapse full source codeView on TracView on GitHub