wenpai.org/wp-content/plugins/gp-translation-helpers/includes/class-gth-temporary-post.php
2024-06-21 23:57:39 +08:00

14 lines
219 B
PHP

<?php
class Gth_Temporary_Post {
public $ID;
public $comments_open = 'open';
public function __construct( $post_id ) {
$this->ID = $post_id;
}
public function __toString() {
return strval( $this->ID );
}
}