WP_Privacy_Requests_Table::get_columns(): string[]

Gets columns to show in the list table.


Return

string[] Array of column titles keyed by their column name.


Top ↑

Source

File: wp-admin/includes/class-wp-privacy-requests-table.php. View all references

public function get_columns() {
	$columns = array(
		'cb'                => '<input type="checkbox" />',
		'email'             => __( 'Requester' ),
		'status'            => __( 'Status' ),
		'created_timestamp' => __( 'Requested' ),
		'next_steps'        => __( 'Next steps' ),
	);
	return $columns;
}


Top ↑

Changelog

Changelog
Version Description
4.9.6 Introduced.

Top ↑

User Contributed Notes

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