Skip to content

Instantly share code, notes, and snippets.

@zorca
Last active November 17, 2019 07:26
Show Gist options
  • Save zorca/6604680b92809359d8dd023b5c22c0ed to your computer and use it in GitHub Desktop.
Save zorca/6604680b92809359d8dd023b5c22c0ed to your computer and use it in GitHub Desktop.
<?php
add_action( 'init', 'mysqlfix', -1 );
function mysqlfix() {
global $wpdb;
# Removed ONLY_FULL_GROUP_BY
$wpdb->set_sql_mode(['TRADITIONAL']);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment