To get the last modified time of an article in WordPress given its ID, you can use the get_post_modified_time
function. Here’s how you can do it:
<?php
$post_id = 5;$last_modified_time = get_post_modified_time(‘Y-m-d H:i:s’, true, $post_id);
echo ‘last_modified_time: ‘ . $last_modified_time;
?>
Explanation:
get_post_modified_time()
: This function retrieves the last modification time of a post.- The first parameter
'Y-m-d H:i:s'
specifies the format in which you want to get the time. You can change this format as needed. For example,'F j, Y'
will give you the date in a more readable format like “July 30, 2024”. - The second parameter
true
indicates that you want the time to be retrieved in GMT. If you want it in the local timezone, set this parameter tofalse
. - The third parameter is the ID of the post.
- The first parameter
If you want to use this code in a theme or plugin, make sure you put it in the appropriate place, such as in the functions.php file, or in a template file:
php
Copy code
// In a WordPress theme template file
<?php
// Specify the post ID
$post_id = 5;
// Get the last modified time of the post
$last_modified_time = get_post_modified_time(‘Y-m-d H:i:s’, true, $post_id);
// Output the last modified time
echo ‘Last modified time: ‘ . $last_modified_time;
?>
Make sure to replace 5 with the post ID you need. This way you can get and display the last modified time of a specific post.
Search
Popular on Blogar
Content Marketing-What is Content Marketing
- October 24th, 2023
- 1401 Views
Social Media Marketing-Social Media Marketing (SMM)
- October 24th, 2023
- 1692 Views
Pay-Per-Click-What is PPC
- October 24th, 2023
- 1271 Views
How to Activate Windows 11 Pro (No tools needed)
- September 3rd, 2024
- 99 Views
How to disable automatic updates for themes and plugins in WordPress
- August 16th, 2024
- 97 Views
Get all WordPress category names and IDs
- August 21st, 2024
- 95 Views
WordPress sticky articles in categories but not on the homepage
- August 13th, 2024
- 94 Views
WordPress-How to show single post content in front-end?
- August 26th, 2024
- 91 Views
WordPress display articles by category
- August 28th, 2024
- 86 Views
How To Find The IP Of Any Whatsapp Call
- September 3rd, 2024
- 85 Views
Recent Post
Content Marketing-What is Content Marketing
- October 24th, 2023
- 1401 Views
Social Media Marketing-Social Media Marketing (SMM)
- October 24th, 2023
- 1692 Views
Pay-Per-Click-What is PPC
- October 24th, 2023
- 1271 Views
VMware cannot install VMware Tools, prompts VMCI, memory driver
- November 25th, 2024
- 57 Views
- Howo Tractor Truck
- Howo Tipper/Dump Truck
- Howo Cargo Truck
- Howo Concrete Mixer Truck
- Howo Special Truck
- Howo Light Truck
- Shacman Tractor Truck
- Shacman Tipper/Dump Truck
- Shacman Cargo Truck
- Shacman Concrete Mixer Truck
- LGMG Mining Trucks
- XCMG Wheel Loader
- XCMG Excavator
- XCMG Crane
- XCMG Asphalt Pavers
- XCMG Road Roller
- Shantui Bulldozer
Copyright © 2024 BBBBF All Rights Reserved.