Skip to content

Instantly share code, notes, and snippets.

@Restoration
Created October 26, 2016 10:43
Show Gist options
  • Select an option

  • Save Restoration/54919048e4c56ce5f35343883304d36d to your computer and use it in GitHub Desktop.

Select an option

Save Restoration/54919048e4c56ce5f35343883304d36d to your computer and use it in GitHub Desktop.
WordPressのSQLチェック

#WordPressのSQLチェック

#設定ファイルの修正 wp-config.php

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