WP – Question Mark Diamond Removal From New Install

		
		
			

REMOVE THE FOLLOWING: [wp-config.php]

/** Database Charset to use in creating database tables. */
/** define(‘DB_CHARSET’, ‘utf8mb4’); */

/** The Database Collate type. Don’t change this if in doubt. */
/** define(‘DB_COLLATE’, ”); */

REPLACE WITH FOLLOWING:

/** REAL SOLUTION FOR DIAMOND QUESTION MARK */
define( ‘DB_CHARSET’, ‘utf8’ );
define( ‘DB_COLLATE’, ‘utf8_general_ci’ );

Posted in WP