Changeset 48941 for trunk/src/wp-includes/class-wp-comment.php
- Timestamp:
- 09/04/2020 08:39:47 PM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/class-wp-comment.php
r47597 r48941 18 18 * Comment ID. 19 19 * 20 * @since 4.4.0 21 * @var int 20 * A numeric string, for compatibility reasons. 21 * 22 * @since 4.4.0 23 * @var string 22 24 */ 23 25 public $comment_ID; … … 26 28 * ID of the post the comment is associated with. 27 29 * 28 * @since 4.4.0 29 * @var int 30 * A numeric string, for compatibility reasons. 31 * 32 * @since 4.4.0 33 * @var string 30 34 */ 31 35 public $comment_post_ID = 0; … … 90 94 * Comment karma count. 91 95 * 92 * @since 4.4.0 93 * @var int 96 * A numeric string, for compatibility reasons. 97 * 98 * @since 4.4.0 99 * @var string 94 100 */ 95 101 public $comment_karma = 0; … … 123 129 * Parent comment ID. 124 130 * 125 * @since 4.4.0 126 * @var int 131 * A numeric string, for compatibility reasons. 132 * 133 * @since 4.4.0 134 * @var string 127 135 */ 128 136 public $comment_parent = 0; … … 131 139 * Comment author ID. 132 140 * 133 * @since 4.4.0 134 * @var int 141 * A numeric string, for compatibility reasons. 142 * 143 * @since 4.4.0 144 * @var string 135 145 */ 136 146 public $user_id = 0;
Note: See TracChangeset
for help on using the changeset viewer.