Changeset 41036 for trunk/src/wp-includes/class-wp-post.php
- Timestamp:
- 07/13/2017 12:07:56 PM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/class-wp-post.php
r39992 r41036 25 25 * Post ID. 26 26 * 27 * @since 3.5.0 28 * @access public 27 29 * @var int 28 30 */ … … 34 36 * A numeric string, for compatibility reasons. 35 37 * 38 * @since 3.5.0 39 * @access public 36 40 * @var string 37 41 */ … … 41 45 * The post's local publication time. 42 46 * 47 * @since 3.5.0 48 * @access public 43 49 * @var string 44 50 */ … … 48 54 * The post's GMT publication time. 49 55 * 56 * @since 3.5.0 57 * @access public 50 58 * @var string 51 59 */ … … 55 63 * The post's content. 56 64 * 65 * @since 3.5.0 66 * @access public 57 67 * @var string 58 68 */ … … 62 72 * The post's title. 63 73 * 74 * @since 3.5.0 75 * @access public 64 76 * @var string 65 77 */ … … 69 81 * The post's excerpt. 70 82 * 83 * @since 3.5.0 84 * @access public 71 85 * @var string 72 86 */ … … 76 90 * The post's status. 77 91 * 92 * @since 3.5.0 93 * @access public 78 94 * @var string 79 95 */ … … 83 99 * Whether comments are allowed. 84 100 * 101 * @since 3.5.0 102 * @access public 85 103 * @var string 86 104 */ … … 90 108 * Whether pings are allowed. 91 109 * 110 * @since 3.5.0 111 * @access public 92 112 * @var string 93 113 */ … … 97 117 * The post's password in plain text. 98 118 * 119 * @since 3.5.0 120 * @access public 99 121 * @var string 100 122 */ … … 104 126 * The post's slug. 105 127 * 128 * @since 3.5.0 129 * @access public 106 130 * @var string 107 131 */ … … 111 135 * URLs queued to be pinged. 112 136 * 137 * @since 3.5.0 138 * @access public 113 139 * @var string 114 140 */ … … 118 144 * URLs that have been pinged. 119 145 * 146 * @since 3.5.0 147 * @access public 120 148 * @var string 121 149 */ … … 125 153 * The post's local modified time. 126 154 * 155 * @since 3.5.0 156 * @access public 127 157 * @var string 128 158 */ … … 132 162 * The post's GMT modified time. 133 163 * 164 * @since 3.5.0 165 * @access public 134 166 * @var string 135 167 */ … … 139 171 * A utility DB field for post content. 140 172 * 141 * 173 * @since 3.5.0 174 * @access public 142 175 * @var string 143 176 */ … … 147 180 * ID of a post's parent post. 148 181 * 182 * @since 3.5.0 183 * @access public 149 184 * @var int 150 185 */ … … 154 189 * The unique identifier for a post, not necessarily a URL, used as the feed GUID. 155 190 * 191 * @since 3.5.0 192 * @access public 156 193 * @var string 157 194 */ … … 161 198 * A field used for ordering posts. 162 199 * 200 * @since 3.5.0 201 * @access public 163 202 * @var int 164 203 */ … … 168 207 * The post's type, like post or page. 169 208 * 209 * @since 3.5.0 210 * @access public 170 211 * @var string 171 212 */ … … 175 216 * An attachment's mime type. 176 217 * 218 * @since 3.5.0 219 * @access public 177 220 * @var string 178 221 */ … … 184 227 * A numeric string, for compatibility reasons. 185 228 * 229 * @since 3.5.0 230 * @access public 186 231 * @var string 187 232 */ … … 193 238 * Does not correspond to a DB field. 194 239 * 240 * @since 3.5.0 241 * @access public 195 242 * @var string 196 243 */ … … 200 247 * Retrieve WP_Post instance. 201 248 * 249 * @since 3.5.0 202 250 * @static 203 251 * @access public … … 236 284 * Constructor. 237 285 * 286 * @since 3.5.0 287 * 238 288 * @param WP_Post|object $post Post object. 239 289 */ … … 246 296 * Isset-er. 247 297 * 298 * @since 3.5.0 299 * 248 300 * @param string $key Property to check if set. 249 301 * @return bool … … 267 319 /** 268 320 * Getter. 321 * 322 * @since 3.5.0 269 323 * 270 324 * @param string $key Key to get. … … 311 365 * {@Missing Summary} 312 366 * 367 * @since 3.5.0 368 * 313 369 * @param string $filter Filter. 314 370 * @return self|array|bool|object|WP_Post … … 327 383 * Convert object to array. 328 384 * 385 * @since 3.5.0 386 * 329 387 * @return array Object as array. 330 388 */
Note: See TracChangeset
for help on using the changeset viewer.