WP_Privacy_Requests_Table::column_created_timestamp()
Returns the markup for the Created timestamp column. Overridden by children.
Method of the class: WP_Privacy_Requests_Table{}
No Hooks.
Return
String
. Human readable date.
Usage
$WP_Privacy_Requests_Table = new WP_Privacy_Requests_Table(); $WP_Privacy_Requests_Table->column_created_timestamp( $item );
- $item(WP_User_Request) (required)
- Item being shown.
Changelog
Since 5.7.0 | Introduced. |
WP_Privacy_Requests_Table::column_created_timestamp() WP Privacy Requests Table::column created timestamp code WP 6.8
public function column_created_timestamp( $item ) { return $this->get_timestamp_as_date( $item->created_timestamp ); }