WP_Post::__construct( WP_Post|object $post )
Constructor.
Parameters
- $post
-
(Required) Post object.
Source
File: wp-includes/class-wp-post.php
public function __construct( $post ) {
foreach ( get_object_vars( $post ) as $key => $value )
$this->$key = $value;
}
Changelog
Version | Description |
---|---|
WP-3.5.0 | Introduced. |