How I can display content for a single post?
My code:
if (is_single()){
get_header();
get_sidebar('left-article');
render_article();
get_footer();
}
In render_article
I call single_post_title()
to get title of post.
However I don’t know how to get time and contents of the post as I can’t find any function like single_post_content()
or single_post_time()
.