WP_Application_Passwords_List_Table::single_row() WordPress Method

The WP_Application_Passwords_List_Table::single_row() method is used to generate a row for an application password in the list table.

WP_Application_Passwords_List_Table::single_row( array $item ) #

Generates content for a single row of the table.


Parameters

$item

(array)(Required)The current item.


Top ↑

Source

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

	public function single_row( $item ) {
		echo '<tr data-uuid="' . esc_attr( $item['uuid'] ) . '">';
		$this->single_row_columns( $item );
		echo '</tr>';
	}


Top ↑

Changelog

Changelog
VersionDescription
5.6.0Introduced.

The content displayed on this page has been created in part by processing WordPress source code files which are made available under the GPLv2 (or a later version) license by theĀ Free Software Foundation. In addition to this, the content includes user-written examples and information. All material is subject to review and curation by the WPPaste.com community.