Difference between the_content() and get_post()?
post_content is a property of the WP_Post object. WP_Post is an object representing the post data from the database. So post_content contains the raw content as stored in the database. the_content() is a template tag that displays the content of the current post. The ‘current post’ is whatever the global $post variable is set to … Read more