WP_Application_Passwords_List_Table::column_default( array $item, string $column_name )

In this article

Generates content for a single row of the table

Parameters

$itemarrayrequired
The current item.
$column_namestringrequired
The current column name.

Source

protected function column_default( $item, $column_name ) {
	/**
	 * Fires for each custom column in the Application Passwords list table.
	 *
	 * Custom columns are registered using the 'manage_application-passwords-user_columns' filter.
	 *
	 * @since 5.6.0
	 *
	 * @param string $column_name Name of the custom column.
	 * @param array  $item        The application password item.
	 */
	do_action( "manage_{$this->screen->id}_custom_column", $column_name, $item );
}

Hooks

do_action( “manage_{$this->screen->id}_custom_column”, string $column_name, array $item )

Fires for each custom column in the Application Passwords list table.

Changelog

VersionDescription
5.6.0Introduced.

User Contributed Notes

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