📜  检查执行 wp 的 sql 查询 - SQL 代码示例

📅  最后修改于: 2022-03-11 15:05:33.180000             🧑  作者: Mango

代码示例1
For $wpdb->queries to work you need to configure in wp-config.php:

define('SAVEQUERIES', true);

This is highly not recommended for production (heavy performance hit) and so 
turned off by default.