Skip to content

Instantly share code, notes, and snippets.

@wpweb101
Last active September 10, 2018 07:54
Show Gist options
  • Select an option

  • Save wpweb101/ab0c892197ffef92fb44c4688a8b0551 to your computer and use it in GitHub Desktop.

Select an option

Save wpweb101/ab0c892197ffef92fb44c4688a8b0551 to your computer and use it in GitHub Desktop.
Social Auto Poster - Change table collection and character set
<?php
/**
* Add this in child theme function.php file.
*/
add_action('wp', 'wp_change_table_collection');
function wp_change_table_collection() {
global $wpdb;
if( empty( get_option('wpsap_wp_options_collation_changed') ) ) {
$wpdb->query("ALTER TABLE wp_options CONVERT TO CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci");
update_option('wpsap_wp_options_collation_changed', 1 );
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment