Cách thích hợp để xác định ngày đăng bài khi gửi bài đăng từ giao diện người dùng bằng wp_insert_post ( Trac ) là gì?
Đoạn mã của tôi bây giờ đang xuất bản với thời gian mysql ...
if (isset ($_POST['date'])) {
$postdate = $_POST['Y-m-d'];
}
else {
$postdate = $_POST['2011-12-21'];
}
// ADD THE FORM INPUT TO $new_post ARRAY
$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);
$postdate = date('2010-02-23 18:57:33');
thực sự làm cho các hộp đầu vào ngừng hoạt động, có lẽ đó chỉ là một lỗi trong Chrome ...