functions - Auto delete post if certain custom field data is empty

This question can be stupid but I really need a solution for it..I am generating classified post using cron job. I have

This question can be stupid but I really need a solution for it.. I am generating classified post using cron job. I have some custom filed as well with the cron job like 'source_link'. Sometimes that custom filed data may not be set for error or any kind of situation. So I want that post with empty data for custom field 'source_link' to be deleted automatically. Is this possible anyway ?

Here the code how I do I create post and set custom field data

            kses_remove_filters();
            $new_id = wp_insert_post($post_arr, true);

            kses_init_filters();

            if (is_wp_error($new_id)) {
                $this->write_log("error occurred in wordpress post entry: " . $new_id->get_error_message() . " " . $new_id->get_error_code(), true);
                return;
            }
            update_post_meta($new_id, 'source_link', $url);

This question can be stupid but I really need a solution for it.. I am generating classified post using cron job. I have some custom filed as well with the cron job like 'source_link'. Sometimes that custom filed data may not be set for error or any kind of situation. So I want that post with empty data for custom field 'source_link' to be deleted automatically. Is this possible anyway ?

Here the code how I do I create post and set custom field data

            kses_remove_filters();
            $new_id = wp_insert_post($post_arr, true);

            kses_init_filters();

            if (is_wp_error($new_id)) {
                $this->write_log("error occurred in wordpress post entry: " . $new_id->get_error_message() . " " . $new_id->get_error_code(), true);
                return;
            }
            update_post_meta($new_id, 'source_link', $url);

Share Improve this question asked Mar 25, 2019 at 17:01 Tuhin A.Tuhin A. 1757 bronze badges
Add a comment  | 

1 Answer 1

Reset to default 1
    kses_remove_filters();
    $new_id = wp_insert_post($post_arr, true);

    kses_init_filters();

    if (is_wp_error($new_id)) {
        $this->write_log("error occurred in wordpress post entry: " . $new_id->get_error_message() . " " . $new_id->get_error_code(), true);
        return;
    }

    if($url)   update_post_meta($new_id, 'source_link', $url);
    else {
        // wp_delete_post($new_id); // Move post to trash
        $deleted = wp_delete_post($new_id, true); // Permanently delete post
        if(! $deleted ){
             $this->write_log("error deleting post entry.", true);
             return;
        }
    }

发布者:admin,转转请注明出处:http://www.yc00.com/questions/1745659109a4638726.html

相关推荐

  • functions - Auto delete post if certain custom field data is empty

    This question can be stupid but I really need a solution for it..I am generating classified post using cron job. I have

    10小时前
    20

发表回复

评论列表(0条)

  • 暂无评论

联系我们

400-800-8888

在线咨询: QQ交谈

邮件:admin@example.com

工作时间:周一至周五,9:30-18:30,节假日休息

关注微信