WP_Privacy_Requests_Table::column_created_timestamp() WordPress Method

This function outputs the created timestamp for a privacy request in the WP_Privacy_Requests_Table.

WP_Privacy_Requests_Table::column_created_timestamp( WP_User_Request $item ) #

Created timestamp column. Overridden by children.


Parameters

$item

(WP_User_Request)(Required)Item being shown.


Top ↑

Return

(string) Human readable date.


Top ↑

Source

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

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


Top ↑

Changelog

Changelog
VersionDescription
5.7.0Introduced.

The content displayed on this page has been created in part by processing WordPress source code files which are made available under the GPLv2 (or a later version) license by theĀ Free Software Foundation. In addition to this, the content includes user-written examples and information. All material is subject to review and curation by the WPPaste.com community.