Get Post Creation Date of a WordPress Post

Show creation date of a post by post ID:

echo 'Post created on '.get_the_time('l, F jS, Y', $post->ID);

Example output:

Post created on Monday, April 15th, 2016

Reference:
Function Reference/get the date

More Related Posts