Instead of using $post->post_date
, use get_the_time( $format, $post )
.
The correct PHP date format string for your question is 'd/m/y H:i'
.
… Assuming you want a two digit minute (even when less that 10 minutes). Also, I may have the month and day the wrong way around for you.
The format argument in get_the_time()
is PHP’s native date format – http://php.net/manual/en/function.date.php
Then, change your line of code to:
$message = str_replace( '[post_date]', get_the_time( 'd/m/y H:i', $post ), $message );
Though, I think it’ll be easier and neater to just add the get_the_time( 'd/m/y H:i', $post )
to your template, rather than having to put a shortcode into each post.
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
- 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 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]
- Display post from specific date
- Get random posts between specific dates / of specific age
- XML-RPC and post_date
- 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
- Update all comments time to random dates?
- WordPress Sidebar menu for posts based on date – guidance needed
- date issue with category post retrival
- How to get date of post when using wp_get_recent_posts()?
- Worpdress function for difference dates
- Changing default WP-Site creation date
- How to get posts published on the latest date?
- 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
- 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
- wp_query if have posts show date but not in loop
- Retrieving posts by their date and category
- Date is wrong on ‘all posts’ page
- 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?
- 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
- Add tag to post api wordpress
- How to show list of posts by author and category?
- how to limit and display tag?
- Adding Multiple Values to a Post Meta Key
- Warning: Creating default object from empty value in … /post.php
- Display page content AFTER a loop of posts
- How to get the date of a post in WordPress, so I could use it in a script?
- Batch process: remove first image from post content
- Delete WordPress posts from URL list sql query
- Posts with multiple authors with different roles
- How to get the user meta data for a post?
- How to get next post ID?
- Display an author’s posts on his own author page
- A/B testing of posts with unique URLs for each variant AND editing in custom fields
- Post Form Results to Table in Same page
- how many visitor open this post? [closed]
- Have posts included on a page that share same category
- displaying the categories post
- Update user meta when post published no working
- Posts are not showing up on next page.
- My posts section for logged in user
- Latest posts on all pages
- How to show only the date, the title and a little “summary” of my WordPress post in my custom theme?
- Permalink remain the same on each page
- wordpress show category link instead of post link [closed]