Skip to content

Instantly share code, notes, and snippets.

@asha23
Created September 9, 2019 09:26
Show Gist options
  • Save asha23/8505b3878ceba7c4fda8fef400bf3c35 to your computer and use it in GitHub Desktop.
Save asha23/8505b3878ceba7c4fda8fef400bf3c35 to your computer and use it in GitHub Desktop.
WORDPRESS: Just show all the queries on page load
define('SAVEQUERIES', true);
if (current_user_can('administrator')){
global $wpdb;
echo "<pre>";
print_r($wpdb->queries);
echo "</pre>";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment