Cập Nhật Hàng Loạt Dữ Liệu Meta Cho Post Type Bất Kỳ

add_action('init', 'bulk_update_post_meta_data');

function bulk_update_post_meta_data() {
    $args = array(
        'posts_per_page' => -1, // Lấy tất cả các bài viết
        'post_type'      => 'post', // Thay đổi tên Post Type
        'suppress_filters' => true // Bỏ qua các bộ lọc
    );

    // Lấy tất cả các bài viết theo tham số đã thiết lập
    $posts_array = get_posts($args);

    // Duyệt qua từng bài viết và cập nhật meta dữ liệu
    foreach ($posts_array as $post) {
        update_post_meta($post->ID, 'image_redirect', '_exmage_external_url');
    }
}