The issue is that for correct output WP needs to process date through date_i18n()
function. When you use date format, hardcoded in PHP code (not simply saved in PHP DATE_*
constant) like 'c'
– it’s not available to your code and so for WP to process.
System-wide fix would be to re-process date with analogous format that can be accessed by WP code:
add_filter( 'date_i18n', 'fix_c_time_format', 10, 4 );
function fix_c_time_format( $date, $format, $timestamp, $gmt ) {
if ( 'c' == $format )
$date = date_i18n( DATE_ISO8601, $timestamp, $gmt );
return $date;
}
Related Posts:
- Time & Date on Post – Time Ago Custom Function
- Date, Time, and Timezones
- Is it safe to use ‘date_default_timezone_set’ in plugin file?
- Query between two meta values?
- filter date and time to differents time zone
- WordPress outputs mm/dd but it should be opposite
- How to show Published date and/or Modified date
- timestamp and scheduled post irregularities
- How to get User Time Zone in WordPress?
- Randomizing Post Links Outside of Loop – No Author or Date
- Post Publish date not display on Umaya Child themes
- Timezone for Plugin
- How to get Unix Local Time?
- Sorting meta box values by start- and enddate and all dates in between
- Can someone explain why wordpress uses two column for storing time values?
- How can I get the post ID from a WP_Query loop?
- How to edit a post meta data in a Gutenberg Block?
- Default timezone hardcoded as UTC?
- How to convert DateTime() to display time based on WordPress timezone setting?
- How we get_post_meta without post id
- What is the code to get the download link for a product in WooCommerce?
- Adding an assisting editor box to Post page
- Get Advanced Custom Fields values before saving [closed]
- Why am I getting an infinite loop with have_posts?
- How to store post meta in an array?
- update_post_meta() not working when used with WordPress action
- How to check for WordPress timezone type?
- Get posts by meta value with date
- Get updated post meta on save_post action?
- How metadata API works?
- Delete post meta conditionally after save post
- Job of meta_key meta_value fields in database tables
- How to store Gutenberg ColourPicker RGBA as metadata
- Is it possible to update a post meta field through REST API if the format of it when registered is nested?
- Create a Metabox that behaves Like a Taxonomy Box
- Views count with time limit per IP
- Query 2 meta key values and a category
- trying to do if post meta !=0
- Trying to get file name
- Relative time – how to calculate difference beween post publish date and current time
- how to build (custom) stats for post views, per month
- get_post_meta pagination
- Removing Post Meta from Category Pages?
- Hey, I want the second options. get_post_meta()
- Update post meta in woocommerce order frontend
- populate post meta in gravity forms [closed]
- How to display post view count by date, week and month?
- How can I filter posts when the meta_value is a serialize object?
- Get User Post if Private
- Convert CST published date time to MST timezone
- How to receive all the meta information of a post ?
- add_post_meta adds meta to one more different post
- Unknown characters added to meta data values
- Compare old meta with new post meta
- get_post_meta($post->ID) returns empty string when in preview mode of custom post type
- need to add add user names to the post for later retrieval or removal
- Trying to get property of non-object error using get_post_meta()
- How can i display time minus 6 hours
- Like & Dislike functionality using JavaScript
- update_post_meta not working in plugin
- get_permalink vs the_permalink
- Updating my Post when expiry date is past
- How get exact time difference
- How to remove Date from Meta Description on SERP?
- How to display sql query fired by posts_where
- Unfiltered html with update_post_meta
- get meta value from page query
- why after saving meta value it’s saving all the values the one that i clicked?
- How does WordPress treats attachments metadata in post content?
- Stop `update_post_meta` from working each time page refreshes?
- Displaying the ‘time ago’ for recent activity within a post/custom post type?
- add post meta front end edit
- How to query and update one colum in postmeta table?
- How to remove date from showing in meta description
- How to save HTML data into SQL post_content column
- update post meta value with other post meta value
- How to merge the database results into single result?
- Check For get_post_meta on Author Archive Page
- Negative meta_query if storing multiple post_meta values with shared meta_key
- How can I update this array built from post meta data?
- What format is this and how to get value “lal” and “pila” from it
- Frontend query and does not need to log in [closed]
- Get data from custom table and update relative post_meta based on meta_key
- How to save a meta_value as a numeric value after I retrieve it via update_post_meta?
- Display multiple meta_key/meta_values by single SQL query
- Programatically delete several attributes in _product_attributes in post meta
- datetime picker, timestamps and meta queries
- Get post meta after insert post
- Data not displaying in text field
- How do you sort the items in a custom taxonomy meta box?
- WP-API + JS Backbone client – how to update post meta
- Proper Way to Sanitize Meta Input
- update_post_meta returning false when called during init
- When importing posts to a new site if XML file has postmeta not setup on new server what happens?
- Access Serialized Post Meta Values
- Cache metadata for set of posts
- Does post-meta belong in header?
- get posts based on category and post meta
- Datetime on time tag wordpress puts it outside the tag
- Problem with get_post_meta