Changeset 22357 for trunk/wp-includes/post.php
- Timestamp:
- 11/02/2012 04:13:53 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/post.php
r22291 r22357 430 430 * 431 431 * @var int 432 */ 432 */ 433 433 public $post_author = 0; 434 434 … … 436 436 * 437 437 * @var string 438 */ 438 */ 439 439 public $post_date = '0000-00-00 00:00:00'; 440 440 … … 442 442 * 443 443 * @var string 444 */ 444 */ 445 445 public $post_date_gmt = '0000-00-00 00:00:00'; 446 446 … … 448 448 * 449 449 * @var string 450 */ 450 */ 451 451 public $post_content = ''; 452 452 … … 454 454 * 455 455 * @var string 456 */ 456 */ 457 457 public $post_title = ''; 458 458 … … 460 460 * 461 461 * @var string 462 */ 462 */ 463 463 public $post_excerpt = ''; 464 464 … … 466 466 * 467 467 * @var string 468 */ 468 */ 469 469 public $post_status = 'publish'; 470 470 … … 472 472 * 473 473 * @var string 474 */ 474 */ 475 475 public $comment_status = 'open'; 476 476 … … 478 478 * 479 479 * @var string 480 */ 480 */ 481 481 public $ping_status = 'open'; 482 482 … … 484 484 * 485 485 * @var string 486 */ 486 */ 487 487 public $post_password = ''; 488 488 … … 490 490 * 491 491 * @var string 492 */ 492 */ 493 493 public $post_name = ''; 494 494 … … 496 496 * 497 497 * @var string 498 */ 498 */ 499 499 public $to_ping = ''; 500 500 … … 502 502 * 503 503 * @var string 504 */ 504 */ 505 505 public $pinged = ''; 506 506 … … 508 508 * 509 509 * @var string 510 */ 510 */ 511 511 public $post_modified = '0000-00-00 00:00:00'; 512 512 … … 514 514 * 515 515 * @var string 516 */ 516 */ 517 517 public $post_modified_gmt = '0000-00-00 00:00:00'; 518 518 … … 520 520 * 521 521 * @var string 522 */ 522 */ 523 523 public $post_content_filtered = ''; 524 524 … … 526 526 * 527 527 * @var int 528 */ 528 */ 529 529 public $post_parent = 0; 530 530 … … 532 532 * 533 533 * @var string 534 */ 534 */ 535 535 public $guid = ''; 536 536 … … 538 538 * 539 539 * @var int 540 */ 540 */ 541 541 public $menu_order = 0; 542 542 … … 544 544 * 545 545 * @var string 546 */ 546 */ 547 547 public $post_type = 'post'; 548 548 … … 550 550 * 551 551 * @var string 552 */ 552 */ 553 553 public $post_mime_type = ''; 554 554 … … 556 556 * 557 557 * @var int 558 */ 558 */ 559 559 public $comment_count = 0; 560 560 … … 562 562 * 563 563 * @var string 564 */ 564 */ 565 565 public $filter; 566 566 … … 4588 4588 * object cache associated with the post ID. 4589 4589 * 4590 * clean_post_cache() will call itself recursively for each child post.4591 *4592 4590 * This function not run if $_wp_suspend_cache_invalidation is not empty. See 4593 4591 * wp_suspend_cache_invalidation().
Note: See TracChangeset
for help on using the changeset viewer.