Timed post and tweet?

WordPress doesn’t have “tweeting” functionality built in. However, post scheduling is built in. You just set the time when you want the post to publish on the edit post screen. If you use a twitter plugin like my own Simple Twitter Connect, and you schedule a post, then it will send the tweet at the … Read more

Why do I need to set my PHP timezone when it’s already set in WordPress?

In functions.php if I add date_default_timezone_set( get_option(‘timezone_string’) ); then $dt will output correctly with “PST”. Yes, but, “don’t change PHP time zone with date_default_timezone_set() (this one is hard requirement for correct core operation!)” — https://make.wordpress.org/core/2019/09/23/date-time-improvements-wp-5-3/. I didn’t think I needed to explicitly set the timezone since I already set it in WordPress WordPress does use … Read more

Separating publish date and last modified

The publish date is either when the post is originally published, or the date that you choose to set it as published in the Editor, so that is the part you can manually control. The modified date is whenever an update has most recently occurred, such as when the Update button is pressed in the … Read more