Get the post date by id

Description

This code will get the post year by ID, simply change 14 the ID of the post that you wish to get the date for. You can also change the date format.

PHP Source Code

                        
                          <!--Get the post year by id start-->
<?php
// Get the post by ID
$post_id = 14;
$post = get_post($post_id);

// Check if the post exists
if ($post) {
// Get the post date
$post_date = get_the_date('', $post);
echo $post_date = get_the_date('Y', $post); // Example: January 28, 2025
} 
?>
<!--Get the post year by id end-->                        
                        


Post Categories