Title: WP_Application_Passwords_List_Table::single_row
Published: December 9, 2020
Last modified: May 20, 2026

---

# WP_Application_Passwords_List_Table::single_row( array $item )

## In this article

 * [Parameters](https://developer.wordpress.org/reference/classes/wp_application_passwords_list_table/single_row/?output_format=md#parameters)
 * [Source](https://developer.wordpress.org/reference/classes/wp_application_passwords_list_table/single_row/?output_format=md#source)
 * [Related](https://developer.wordpress.org/reference/classes/wp_application_passwords_list_table/single_row/?output_format=md#related)
 * [Changelog](https://developer.wordpress.org/reference/classes/wp_application_passwords_list_table/single_row/?output_format=md#changelog)

[ Back to top](https://developer.wordpress.org/reference/classes/wp_application_passwords_list_table/single_row/?output_format=md#wp--skip-link--target)

Generates content for a single row of the table.

## 󠀁[Parameters](https://developer.wordpress.org/reference/classes/wp_application_passwords_list_table/single_row/?output_format=md#parameters)󠁿

 `$item`arrayrequired

The current item.

## 󠀁[Source](https://developer.wordpress.org/reference/classes/wp_application_passwords_list_table/single_row/?output_format=md#source)󠁿

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

[View all references](https://developer.wordpress.org/reference/files/wp-admin/includes/class-wp-application-passwords-list-table.php/)
[View on Trac](https://core.trac.wordpress.org/browser/tags/7.0/src/wp-admin/includes/class-wp-application-passwords-list-table.php#L178)
[View on GitHub](https://github.com/WordPress/wordpress-develop/blob/7.0/src/wp-admin/includes/class-wp-application-passwords-list-table.php#L178-L182)

## 󠀁[Related](https://developer.wordpress.org/reference/classes/wp_application_passwords_list_table/single_row/?output_format=md#related)󠁿

| Uses | Description | 
| [esc_attr()](https://developer.wordpress.org/reference/functions/esc_attr/)`wp-includes/formatting.php` |

Escaping for HTML attributes.

  |

## 󠀁[Changelog](https://developer.wordpress.org/reference/classes/wp_application_passwords_list_table/single_row/?output_format=md#changelog)󠁿

| Version | Description | 
| [5.6.0](https://developer.wordpress.org/reference/since/5.6.0/) | Introduced. |

## User Contributed Notes

You must [log in](https://login.wordpress.org/?redirect_to=https%3A%2F%2Fdeveloper.wordpress.org%2Freference%2Fclasses%2Fwp_application_passwords_list_table%2Fsingle_row%2F)
before being able to contribute a note or feedback.