WP_List_Table::single_row( object $item )

Generates content for a single row of the table


Description Description


Parameters Parameters

$item

(object) (Required) The current item


Top ↑

Source Source

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

	public function single_row( $item ) {
		echo '<tr>';
		$this->single_row_columns( $item );
		echo '</tr>';
	}

Top ↑

Changelog Changelog

Changelog
Version Description
3.1.0 Introduced.


Top ↑

User Contributed Notes User Contributed Notes

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