1 2 3 |
wp_delete_post($post_id, true); //True: xóa vĩnh viễn //False: chuyển vào thùng rác |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
$args = array( 'post_title' => wp_strip_all_tags( $_POST['post_title'] ), 'post_content' => $_POST['post_content'], 'post_status' => 'publish', 'post_author' => 1, 'post_category' => array( 8,39 ), 'post_type' => 'post' ); $post_id = wp_insert_post($args); if(!is_wp_error($post_id)){ //Hoạt động ok trả về id }else{ // Có lỗi trả về thông báo lỗi echo $post_id->get_error_message(); } |
Mọi sự sao chép xin ghi rõ nguồn là fcwordpress.net
Chuyên trang về wordpress: hướng dẫn thiết kế theme, plugin, thủ thuật wordpress