Tagged Questions
3
votes
2answers
111 views
Running WP Cron on specific local time
The scenario is to run insert_post function every midnight (00:00) of local time. Must run daily on weekday.
function add_daily_task(){
if((date('l', time()) != 'Saturday') || (date('l', time()) ...
0
votes
3answers
2k views
Proper formatting of post_date for wp_insert_post?
What is the proper way to define the post date when submitting a post from the front end using wp_insert_post (Trac)?
My snippet now is publishing with the mysql time...
if (isset ($_POST['date'])) ...