Answers for "wordpress get post date and time"

PHP
1

wordpress echo the date in post

$post_date = get_the_date( 'D M j' ); echo $post_date;
Posted by: Guest on November-25-2020
1

wordpress get post time

// Retrieve the time at which the post was written.
get_the_time( string $format = '', int|WP_Post $post = null )
Posted by: Guest on February-19-2021
0

wordpress echo the date in post

$post_date = get_the_date( 'l F j, Y' ); echo $post_date;
Posted by: Guest on November-25-2020

Browse Popular Code Answers by Language