WordPress fait écho à la date dans le post
$post_date = get_the_date( 'D M j' ); echo $post_date;
Poor Panther
$post_date = get_the_date( 'D M j' ); echo $post_date;
// Retrieve the time at which the post was written.
get_the_time( string $format = '', int|WP_Post $post = null )
$post_date = get_the_date( 'l F j, Y' ); echo $post_date;
$post_date = get_the_date( 'D M j' ); echo $post_date;