You can use PHP’s date()
function here, but usually first you’ll need to run date_default_timezone_set
. UTC+1 looks like Central Europe time from what I can tell, so here’s what I’d run:
<?php
date_default_timezone_set('Europe/Berlin');
echo date( 'D, d M Y H:i:s', now() );
?>
That will print out the current time from your server.
If you’re looking to print out a timestamp from a post, you can use get_post_time and print replace the now()
function. Looks like this:
<?php
date_default_timezone_set('Europe/Berlin');
echo date( 'D, d M Y H:i:s', get_post_time('U', true) );
?>
Related Posts:
- Converting Unix timestamp to wordpress date
- Count time from registration date to today
- Update existing post times to random times?
- Timezone for Plugin
- How to get Unix Local Time?
- How to second orderby in “pre_get_posts” by meta value or combine single date and time to timestamp
- Unable to select an old date in wordpress
- How to get date for each post?
- Date, Time, and Timezones
- Modify Date Format to German
- Serve visitor post time adjusted to their timezone
- Styling the date format with date_i18n
- Date and time format for UK in a custom post type [closed]
- What are the “U” and “G” time formats?
- date() returns incorrect value if used from WordPress theme, but correct otherwise
- How to get date using timezone saved in options? [duplicate]
- wordpress convert timestamp to date not correctly
- display month in french in wordpress/php?
- Set the publication date independent of the scheduled publication date
- About Time conditionals
- Format Date for Manual Insertion into post
- Translate current_time
- Display published time for today’s posts only
- convert time to WordPress user’s local time
- How to get User Time Zone in WordPress?
- Show different time stamp based on time
- Can’t convert ACF datepicker value to DateTime oject – gives me a boolean
- Can’t add to time? [closed]
- How to display Date and Time in Tamil Language?
- Get current week’s day and time outside the loop
- Use the_date with link
- automatic send email at custom time
- Change the date and time in wordpress
- Make datestamp for status updates show time
- Advanced Custom Fields and date picker, show posts only if the day is today no matter the year
- How to customize Date Format for American visitors?
- How to get current timestamp in string format in Java? “yyyy.MM.dd.HH.mm.ss”
- Java SimpleDateFormat for YYYY-MM-DDThh:mm:ssTZD
- How do I use PHP to get the current year?
- R Programming Error in cov.wt(z) : ‘x’ must contain finite values only
- Convert a Unix timestamp to time in JavaScript
- Convert number to month name in PHP
- Post doesn’t show date if there’s another post with the same date
- The purpose of the post_date_gmt?
- Why my uploaded picture was loaded into /uploads/2015/02 not /uploads/2016/01?
- How to integrate get_post_time with date_i18n function?
- Permitting WordPress to accept dates outside of 1902-2038
- Get date of last update outside of loop
- WordPress Custom Query to show posts from last x years
- How to show the real post date in a draft
- Why time functions show invalid time zone when using ‘c’ time format?
- How to display date such “x ago”
- Keeping post_date same as the pending post_date on privately publishing the post
- How to remove published date from RSS feed
- Add 20yrs to post date, and then query
- Is it safe to use ‘date_default_timezone_set’ in plugin file?
- Date comparison : which date format?
- datetime picker, timestamps and meta queries
- XML export posts from one single day
- Bulk edit post date in wordpress
- Automatically move pending posts after 30 days and, update the post date, when users update the posts
- month name translation
- Count days from registration date to today
- WordPress returns a wrong date
- Human Time Diff, change mins to minutes
- Display date only once for a each set of posts relating to that date
- custom field value date convert to unix timestamp problems
- Remove “at” string from wordpress comment date
- How to add 2 hours to the wordpress time formed with current_time(“mysql”, false)?
- Date query not inclusive despite parameter being true
- Finding difference in days
- WordPress post dating – pre 1901?
- How to get time difference between publish date and now?
- Use meta_query to display events by date in custom field
- Unable to set right time in admin and frontend template
- the_modified_date returns published date
- Query by custom dates in UNIX Time
- filter date and time to differents time zone
- Page Revision date displaying on google search
- Change date from 2015/02/23 to “1 min ago”
- Display page only if user registered before a specific date
- Relative time – how to calculate difference beween post publish date and current time
- Display post date as 04/26/2013
- Calculate future date
- WordPress outputs mm/dd but it should be opposite
- Individually styling date month year [closed]
- Advanced custom fields: Customise date picker’s start date (need to choose year 1500 onwards) [closed]
- timestamp and scheduled post irregularities
- Show post updated date instead of published
- Get date numerical and separate?
- Add a link to display posts with a specific tag within a date range
- How can I show many posts an author has per week?
- If modified on same day, show only time
- After wp_insert_post(), date_i18n() and date() outputs are adjusted to GMT
- Convert GMT time to local time in Gutenberg Block Editor
- Mini app that shows one unique quote each day. 56 rotating posts rotating for each themed weekday. It works, but I need your advice
- How to add a sortable date column in an admin page?
- Events are all showing the current date
- Update all comments time to random dates?
- Print last modified date only on posts