WP_Privacy_Requests_Table::column_created_timestamp()publicWP 5.7.0

Returns the markup for the Created timestamp column. Overridden by children.

Метод класса: WP_Privacy_Requests_Table{}

Хуков нет.

Возвращает

Строку. Human readable date.

Использование

$WP_Privacy_Requests_Table = new WP_Privacy_Requests_Table();
$WP_Privacy_Requests_Table->column_created_timestamp( $item );
$item(WP_User_Request) (обязательный)
Item being shown.

Список изменений

С версии 5.7.0 Введена.

Код WP_Privacy_Requests_Table::column_created_timestamp() WP 6.5.2

public function column_created_timestamp( $item ) {
	return $this->get_timestamp_as_date( $item->created_timestamp );
}