WP_Links_List_Table::display_rows()

In this article

Source

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
	}
}

User Contributed Notes

You must log in before being able to contribute a note or feedback.