WP_List_Table::single_row()publicWP 3.1.0

Generates content for a single row of the table.

Метод класса: WP_List_Table{}

Хуков нет.

Возвращает

null. Ничего (null).

Использование

$WP_List_Table = new WP_List_Table();
$WP_List_Table->single_row( $item );
$item(объект|массив) (обязательный)
The current item

Список изменений

С версии 3.1.0 Введена.

Код WP_List_Table::single_row() WP 6.5.2

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