If you don’t add a post_date then WordPress fills it automatically with the current date and time.
To set another date and time [ Y-m-d H:i:s ]
is the right structure. An example below with your code.
$postdate="2010-02-23 18:57:33";
$new_post = array(
'post_title' => $title,
'post_content' => $description,
'post_date' => $postdate,
'post_status' => 'publish',
'post_parent' => $parent_id,
'post_author' => get_current_user_id(),
);
//SAVE THE POST
$pid = wp_insert_post($new_post);
Related Posts:
- Running WP Cron on specific local time
- What’s the difference between get_the_time and get_the_date?
- Default timezone hardcoded as UTC?
- How to convert DateTime() to display time based on WordPress timezone setting?
- Whats the way to format a date after using get_posts()
- What is the best workaround for supporting all existing DATEs?
- Date format with genitive case of the month name is not working
- Is it safe to use ‘date_default_timezone_set’ in plugin file?
- How do I display posts by day?
- Fixing UTC time – wordpress effects
- Echo Messages By Checking current_time()
- post_date_gmt and post_date [duplicate]
- Finding difference in days
- How to get time difference between publish date and now?
- How would I bulk change posting date?
- filter date and time to differents time zone
- If else statement based on date_diff value
- How do I create a dynamically-updated copyright statement?
- How do you format the date as a two digit year? (ex. “10.12.10” instead of “10.12.2010”)
- How can I display the current time? [closed]
- Creating a function within functions.php to change the date
- Relative time – how to calculate difference beween post publish date and current time
- Calculate future date
- WordPress outputs mm/dd but it should be opposite
- php console log speed [closed]
- timestamp and scheduled post irregularities
- Timezone UTC to PST
- How do I set up my blog home page to show only this weeke’s posts automatically?
- UTC/local time in Worpdress
- Convert CST published date time to MST timezone
- Display date and time in comments
- Time Issue xx hours ago
- Get WordPress current date/time
- Separately formatting date elements
- How can i display time minus 6 hours
- Show the_date with link
- Displaying time & date problem
- Should I escape the attributes when using get_month_link?
- Display time as “12:00 noon” instead of “12:00 pm”
- How do I make a page not visible at a certain time? [closed]
- How get exact time difference
- wordpress blog posts’s time
- Where does the time get pulled from in the_time()
- Human time difference in months instead of days. How?
- Display posts starting from today date
- Separating publish date and last modified
- Why do I need to set my PHP timezone when it’s already set in WordPress?
- Compare date fails when date is in next year [closed]
- How to setup language of a date in a plugin
- Default Timezone setting in WordPress – is that global?
- Problems with the_time,the_date, get_the_time
- admin end post published time display not working correctly
- Comparing Time with the_time();
- Date time doesn’t show correctly in qTranslate [closed]
- Timed post and tweet?
- wp_dropdown_categories by date?
- WordPress Translate Date Function is giving Error
- Apply filters on date format
- How to fix mysql2date() for 5.3.2 version?
- Incorrect display of bbpress forum topics & replies
- Render the published date/time formatted in ISO 8601 using Timber (.twig)
- Change the year of the whole site
- Display datetime in user’s timezone
- Calculate how much time passed comparing WordPress comment and current time
- Pull ‘Popular Posts’ within specific timeframe
- Block post updates and deletion after a set period
- Replicate the_date function when using a custom field
- Change the counter in terms of date
- Comment time is same as the post time
- Query sub subpages based on specific date?
- Adding a class to last post in the_date
- Can someone explain why wordpress uses two column for storing time values?
- Standard API for rendering a date form
- Display the last date, regardless of articles
- Date is showing in unreadable format. How to convert to readable date?
- How to remove the hyperlink from all post dates where when you mouseover over the post date, a hyperlink displays like- “…com/2023/08/“
- How do I set a featured image (thumbnail) by image URL when using wp_insert_post()?
- How to get WordPress Time Zone setting?
- How to update custom fields using the wp_insert_post() function?
- Attaching taxonomy data to post with wp_insert_post
- Faster way to wp_insert_post & add_post_meta in bulk
- Converting timestamps to local time with date_l18n()
- How to set featured image to custom post from outside programmatically
- wordpress sanitize array?
- How to set post slug when using wp_insert_post();?
- Unable to select an old date in wordpress
- How to get date for each post?
- Check if Post Title exists, Insert post if doesn’t, Add Incremental # to Meta if does
- Is there a downside of using wp_defer_term_counting?
- Order by meta value or date?
- wp_insert_post extremely slow on big table, direct query very fast
- What is “meta_input” parameter in wp_insert_post() used for?
- wp_insert_post add meta_input
- tax_input not working wp_insert_post
- Define page template in wp_insert_post
- Using wp_insert_post() with Networking enabled
- wp set object terms vs wp set post terms
- Why is there both a save_post and wp_insert_post action?
- Custom Post Type Archives by Date and Taxonomy
- See error message from wp_insert_post function?