WP_List_Table::single_row() – Generates content for a single row of the table

You appear to be a bot. Output may be restricted

Description

Generates content for a single row of the table.

Usage

WP_List_Table::single_row( $item );

Parameters

$item
( object|array ) required – The current item

Returns

void

Source

File name: wordpress/wp-admin/includes/class-wp-list-table.php
Lines:

1 to 5 of 5
  public function single_row( $item ) {
    echo '<tr>';
    $this->WP_List_Table::single_row_columns( $item );
    echo '</tr>';
  }
 

 View on GitHub View on Trac