- « Previous Page
- 1
- …
- 68
- 69
- 70
- 71
- 72
- …
- 184
- Next Page »
add_action('wp_ajax_qdp_create_post', 'qdp_create_post'); function qdp_create_post() { if (!current_user_can('edit_posts')) { wp_send_json_error('Nu ai permisiunea.'); } $title = sanitize_text_field($_POST['title']); $desc = wp_kses_post($_POST['desc']); $cats = isset($_POST['categories']) ? array_map('intval', $_POST['categories']) : []; $status = sanitize_text_field($_POST['status']); $post = array( 'post_type' => 'post', 'post_title' => $title, 'post_content' => $desc, 'post_status' => $status, 'post_category'=> $cats ); if ($status == 'future') { $date = sanitize_text_field($_POST['schedule_date']); $time = sanitize_text_field($_POST['schedule_time']); $post['post_date'] = $date.' '.$time.':00'; $post['post_date_gmt'] = get_gmt_from_date($post['post_date']); } $post_id = wp_insert_post($post); if (is_wp_error($post_id)) { wp_send_json_error($post_id->get_error_message()); } wp_send_json_success(array( 'id'=>$post_id, 'link'=>get_permalink($post_id) )); }