WP_Privacy_Requests_Table::get_default_primary_column_name()protectedWP 4.9.6

Returns the default primary column.

Method of the class: WP_Privacy_Requests_Table{}

No Hooks.

Return

String. Default primary column name.

Usage

// protected - for code of main (parent) or child class
$result = $this->get_default_primary_column_name();

Changelog

Since 4.9.6 Introduced.

WP_Privacy_Requests_Table::get_default_primary_column_name() code WP 6.4.3

protected function get_default_primary_column_name() {
	return 'email';
}