Untitled SNIPPET

Tung Pham (tungpham42) plaintext Public Jun 30, 2026 11:26 AM
Share
function fix_taxonomy_collation_for_emoji() {
    global $wpdb;
    
    // Tự động lấy tên bảng chuẩn theo tiền tố (prefix) của website bạn
    $terms_table = $wpdb->prefix . 'terms';
    $term_taxonomy_table = $wpdb->prefix . 'term_taxonomy';

    // Chạy lệnh ép kiểu dữ liệu sang utf8mb4
    $wpdb->query( "ALTER TABLE $terms_table CONVERT TO CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci" );
    $wpdb->query( "ALTER TABLE $term_taxonomy_table CONVERT TO CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci" );
}
// Chạy hàm này khi load một trang bất kỳ trong khu vực admin
add_action( 'admin_init', 'fix_taxonomy_collation_for_emoji' );