How to get post date in WordPress?
I want to get the Post date message like Oct 22, 2014 after the title.
I am using the_title();
for post header But how can I get this date?
+3
Nikunj Soni
source
to share
1 answer
Use the_date()
or get_the_date()
functions, Directly:
<?php the_date(); ?>
or wrap it with a tag h2
(for example):
<?php get_the_date('F M Y', '<h2>', '</h2>'); ?>
+5
Ram sharma
source
to share