Changing your WordPress database collation Updated on March 11, 2022 by Jeff Matson 1 Minutes, 30 Seconds to Read If characters are not being stored properly on your WordPress site, or if you are using a different language in which the characters that you entered are not the same as what is being displayed, you may need to change your database collation. For example, if you database uses character set that is not utf8_general_ci, you will need to tell WordPress to use a different collation. If you need to change the character set of your database as well, take a look at the WordPress codex page on converting your database character sets. In this article, we will show you how to define a custom database collation within WordPress. As we will be using the cPanel file manager to edit your wp-config.php file, you will need to log into cPanel and click on the File Manager icon. Next, you will want to navigate the to the root directory of your WordPress installation. Typically, it will be in your public_html directory. Once you’ve found the wp-config.php file, right-click it and click on Code Edit. Inside this file, locate a link that says: define( ‘DB_COLLATE’, ” ); Within this line, you may set your collation between the two single quotes. For example, it may look something like this: define( ‘DB_COLLATE’, ‘utf8_general_ci’ ); Be sure to save your settings when done. The following are examples of collation that can be used for UTF-8 character sets: utf8_bin utf8_czech_ci utf8_danish_ci utf8_esperanto_ci utf8_estonian_ci utf8_general_ci (default) utf8_hungarian_ci utf8_icelandic_ci utf8_latvian_ci utf8_lithuanian_ci utf8_persian_ci utf8_polish_ci utf8_roman_ci utf8_romanian_ci utf8_slovak_ci utf8_slovenian_ci utf8_spanish_ci utf8_spanish2_ci utf8_swedish_ci utf8_turkish_ci utf8_unicode_ci Share this Article Related Articles How to Create an Admin Account in WordPress via MySQL Create a Footer for WordPress How to Create a Gallery in WordPress without a Plugin How to Disable the WP-Cron (wp-cron.php) in WordPress How to Change Your Site URL in Your WordPress Admin Dashboard W3 Total Cache – Guide to WordPress Caching WordPress – Changing the Site URL and Home Settings How to Globally Change the Font in WordPress How to Install WordPress using Softaculous Cleaning Up Old Post Metadata in WordPress