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