Changeset 25086
- Timestamp:
- 08/22/2013 03:57:31 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/post.php
r25076 r25086 425 425 426 426 /** 427 * Post ID. 427 428 * 428 429 * @var int … … 431 432 432 433 /** 434 * ID of post author. 433 435 * 434 * @var int 436 * A numeric string, for compatibility reasons. 437 * 438 * @var string 435 439 */ 436 440 public $post_author = 0; 437 441 438 442 /** 443 * The post's local publication time. 439 444 * 440 445 * @var string … … 443 448 444 449 /** 450 * The post's GMT publication time. 445 451 * 446 452 * @var string … … 449 455 450 456 /** 457 * The post's content. 451 458 * 452 459 * @var string … … 455 462 456 463 /** 464 * The post's title. 457 465 * 458 466 * @var string … … 461 469 462 470 /** 471 * The post's excerpt. 463 472 * 464 473 * @var string … … 467 476 468 477 /** 478 * The post's status. 469 479 * 470 480 * @var string … … 473 483 474 484 /** 485 * Whether comments are allowed. 475 486 * 476 487 * @var string … … 479 490 480 491 /** 492 * Whether pings are allowed. 481 493 * 482 494 * @var string … … 485 497 486 498 /** 499 * The post's password in plain text. 487 500 * 488 501 * @var string … … 491 504 492 505 /** 506 * The post's slug. 493 507 * 494 508 * @var string … … 497 511 498 512 /** 513 * URLs queued to be pinged. 499 514 * 500 515 * @var string … … 503 518 504 519 /** 520 * URLs that have been pinged. 505 521 * 506 522 * @var string … … 509 525 510 526 /** 527 * The post's local modified time. 511 528 * 512 529 * @var string … … 515 532 516 533 /** 534 * The post's GMT modified time. 517 535 * 518 536 * @var string … … 521 539 522 540 /** 541 * A utility DB field for post content. 542 * 523 543 * 524 544 * @var string … … 527 547 528 548 /** 549 * ID of a post's parent post. 529 550 * 530 551 * @var int … … 533 554 534 555 /** 556 * The unique identifier for a post, not necessarily a URL, used as the feed GUID. 535 557 * 536 558 * @var string … … 539 561 540 562 /** 563 * A field used for ordering posts. 541 564 * 542 565 * @var int … … 545 568 546 569 /** 570 * The post's type, like pot or page. 547 571 * 548 572 * @var string … … 551 575 552 576 /** 577 * An attachment's mime type. 553 578 * 554 579 * @var string … … 557 582 558 583 /** 584 * Cached comment count. 559 585 * 560 * @var int 586 * A numeric string, for compatibility reasons. 587 * 588 * @var string 561 589 */ 562 590 public $comment_count = 0; 563 591 564 592 /** 593 * Stores the post object's sanitization level. 594 * 595 * Does not correspond to a DB field. 565 596 * 566 597 * @var string 567 598 */ 568 599 public $filter; 569 570 /**571 * Private variable used by post formats to cache parsed content.572 *573 * @since 3.6.0574 *575 * @var array576 * @access private577 */578 public $format_content;579 580 600 581 601 public static function get_instance( $post_id ) {
Note: See TracChangeset
for help on using the changeset viewer.