Will I see a performance hit if I use native API calls like get_the_title() instead of $post->post_title?
Template tags rely on global $post (unless you explicitly provide something else to those that support it. So either: they get something from that variable (no reason to go for it in database) or they don’t (then they fail because they have no clue what you want) Under most normal circumstances there is no reason … Read more