Skip to content

Instantly share code, notes, and snippets.

@ashybaye
Last active April 29, 2019 19:33
Show Gist options
  • Save ashybaye/8b519dc56f2917cc9364c12a21b56fab to your computer and use it in GitHub Desktop.
Save ashybaye/8b519dc56f2917cc9364c12a21b56fab to your computer and use it in GitHub Desktop.
WP debug helpers
* Core Control (outdated) - https://wordpress.org/plugins/core-control/
* WP Debug Bar - https://wordpress.org/plugins/debug-bar/
define('SAVEQUERIES',true);
// stores all information about quesries in $wpdb
// Use then in the footer.php:
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