How to Display the Last Updated Date of Your Posts in WordPress

Do you want to display last updated date for your posts in WordPress? Some websites regularly update their posts and would like to show users when the article was last updated. In this article, we will show you how to easily display the last updated date of your posts in WordPress.

How to display last updated date of your posts in WordPress

When You Need Last Updated Date for Posts in WordPress?

Most WordPress themes usually show the date when a post was last published. This is fine for most blogs and static websites.

However, WordPress is also used by websites where old articles are regularly updated (like ours). This last updated date and time is important information for those publications.

The most common example is news websites. They often update old stories to show new developments, add corrections, or media files. If they only added the published date, then their users would miss those updates.

Many popular blogs and websites don’t show any date on their articles. This is a bad practice and you should never remove dates from your blog posts.

Having said that, let’s see how to easily display last updated date for your posts in WordPress.

Displaying Last Updated Date in WordPress

This tutorial requires you to add code to your WordPress files. If you haven’t done this before, then we recommend you to look at our guide on how to copy paste code in WordPress.

Method 1: Show Last Updated Date Before Post Content

You will need to add this code to your theme’s functions.php file or a site-specific plugin.

01 function wpb_last_updated_date( $content ) {
02 $u_time = get_the_time('U');
03 $u_modified_time = get_the_modified_time('U');
04 if ($u_modified_time >= $u_time + 86400) {
05 $updated_date = get_the_modified_time('F jS, Y');
06 $updated_time = get_the_modified_time('h:i a');
07 $custom_content .= '<p class="last-updated">Last updated on '. $updated_date . ' at '. $updated_time .'</p>'
08 }
09
10     $custom_content .= $content;
11     return $custom_content;
12 }
13 add_filter( 'the_content', 'wpb_last_updated_date' );

This code checks to see if a post’s published date and last modified dates are different. If they are, then it displays last modified date before the post content.

You can add custom CSS to style the appearance of the last updated date. Here is a little CSS that you can use as starting point:

1 .last-updated {
2     font-size: small;
3     text-transform: uppercase;
4     background-color: #fffdd4;
5 }

This is how it looked on our demo website.

Last updated date in post content

Method 2: Add Last Updated Date in Theme Templates

This method requires you to edit specific WordPress theme files. Many WordPress themes now use their own template tags which define how these themes show post meta data like date and time.

Some themes also use content templates or template parts to display posts.

Few simpler themes will use single.php, archive.php, and other template files to show content and meta information.

You will be looking for the code responsible for displaying the date and time. You can then either replace that code with the following code, or add it right after your theme’s date and time code.

1 $u_time = get_the_time('U');
2 $u_modified_time = get_the_modified_time('U');
3 if ($u_modified_time >= $u_time + 86400) {
4 echo "<p>Last modified on ";
5 the_modified_time('F jS, Y');
6 echo " at ";
7 the_modified_time();
8 echo "</p> "; }

This is how it looked on our demo site:

Last updated date in post meta

We hope this article helped you learn how to display last updated date of your posts in WordPress.

How to display last updated date of your posts in WordPress

 

Leave a comment