You can see everything returned via php’s var_dump
or print_r
:
$recent_posts = wp_get_recent_posts();
echo '<pre>';
print_r( $recent_posts );
echo '</pre>';
This will reveal that the date is stored in post_date
:
foreach( $recent_posts as $recent ):
echo $recent['post_date'];
endforeach;
Or to format the date, use php’s date
and strtotime
:
echo date( 'l F jS', strtotime( $recent['post_date'] ) );
Related Posts:
- How to get posts published between a date and today?
- How to get post creation date?
- Changing the post date and time with function
- Is it possible to Schedule Attachments in WordPress?
- using wp_update_post on save_post
- Querying post from a multisite network
- How to put last edited entry on top of the blog-post list?
- Query posts from current year
- Update existing post dates to random dates
- featuring old articles without messing up with the archive
- How to display an icon when a new post is published and then remove it when a specific time past?
- How to output comments number of a post per day?
- Human Time Diff, change mins to minutes
- Display custom post types by date field
- How to hide a post from ‘Recent Posts’ widget?
- How can I display a specific user’s first published post?
- Can wordpress differentiate between added and updated posts?
- Fetch posts from current week (Sunday to Saturday)
- How to set post expiration date and time and move the page to archive after expiration [closed]
- How to get most recent commented post above new submitted post in WordPress?
- Two posts are loaded instead of one?
- How to start with post number x?
- Display post from specific date
- Get random posts between specific dates / of specific age
- XML-RPC and post_date
- Display most recent post on homepage?
- Automatically republish old posts
- Replace ‘published on date’ with ‘modified on date’ on Posts
- pre_get_posts query between 2 dates (date stored in custom post meta)
- How can I show many posts an author has per week?
- If modified on same day, show only time
- recent posts for different categories
- WP Bakery Load More Button loads the same posts
- Update all comments time to random dates?
- WordPress Sidebar menu for posts based on date – guidance needed
- date issue with category post retrival
- Worpdress function for difference dates
- Changing default WP-Site creation date
- How to get posts published on the latest date?
- Latest posts by category — how to exclude current post?
- What date to use as a post date? date_gmt or modified_date_gmt
- How to update all posts at once?
- Assigning Two Different Post Dates For Single Post
- Using system date format
- Add hero image to home page (blog format) via the dashboard
- Modify this line to give alternate format date?
- Post: how to set created date after post has been published [closed]
- Add “Posted on” to post date
- Auto update post title and slug when post status is changed
- Why aren’t paragraphs breaking on this page?
- wp_query if have posts show date but not in loop
- Get x recent posts by author?
- Retrieving posts by their date and category
- Showing recent post of category in page
- Date is wrong on ‘all posts’ page
- How to show 3 most recent/viewed posts in a special tiles on home page using wordpress?
- Getting an extra post’s meta data?
- Plotting posts on a graph
- Order posts by date
- Get post publishing date from within custom HTML block
- Post date automatically +100 years into the future
- Change Old WordPress Post Date Year
- My website is showing today’s date instead of published date since db migration to a new wordpress
- How can I change the date format of the revision list?
- How can get the last post date of the user?
- How to get post creation date?
- Need to display a Jan 1st post as the site’s front page on Jan 1st, and Jan 2nd post as front page on Jan 2nd etc
- Set a post expiration and delete a post when expirate
- Display Updated Date Instead of Published Date
- How do you update post date (year only) in a separate custom field?
- How do i search post by jquery datepicker?
- How to hide meta from search result only on pages?
- How do I display posts ordered by a date custom field?
- Compare date of user’s last posts
- Adding post date to ACF field
- How can I set and update the the_date according to a custom field of the post
- Query post for today, if no post get the previous one
- Set post beginning date and final date
- Skip posts, but keep posts per page
- How to display an icon when a new post is published and then remove it when a specific time past?
- Have latest post and recent posts display differently
- How to organise post by category and date
- Display metabox with date
- Last three posts not being put in order by date. How to fix this?
- How to change text (date) in post base on the day
- How to display a certain template element only for posts published within certain time range?
- the_time() cannot be placed correctly
- How to remove a date from wordpress post
- how show post date for specific post?
- Exclude posts by date – related post
- How do I get content of custom post type through post ID
- View post with specific category id and name which I selected in the backend (drop-down option)
- Dynamic archive of posts by date
- How can I fixe the article title problem?
- Automatically select category based on user role
- Disable “Quick edit” for roles in WP dashboard
- users followin the blog post author
- Name Registry (forum?) – Self Entered
- What is the proper use of guid for images in wp_posts?
- Optimize blog that serves hundred of images and videos