« back to home

06 - WP_Post Object

WP_Post Object Summary

The WP_Post object stores data about each post, such as the title, excert, and more. On each post, we can access this information individually and add it to the document as we see fit. Here is an example of how to get data from the WP_Post object:
<?php
$example = get_post();
echo $example->post_title;
?>

WP_Post Object Data

comprehensive list

The WP_Post object contains several varibles within it. It holds the post ID, post_type, post-title, post_date, post_content, post-excerpt, and more. A more comprehensive list can be found at the link above. Each of these variables can be accessed individually and used on the page.

WP_Post Object Role in the Page Load

The WP_Post object can be loaded on the page using the get_post() function in WordPress. This object can be stored in a variable, which can then be used to access the different properties stored in the object. Here is an example of how to get data from the WP_Post object:
<?php
$example = get_post();
echo $example->post_title;
?>

Summary

WP_Post is an important object that can be used in WordPress to access different parts and information from a post.