WP_Links_List_Table::display_rows() – Fires for each registered custom link column.
You appear to be a bot. Output may be restricted
Description
Fires for each registered custom link column.
Usage
WP_Links_List_Table::display_rows();
Parameters
Returns
void
Source
File name: wordpress/wp-admin/includes/class-wp-links-list-table.php
Lines:
1 to 12 of 12
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 } }