Skip to content

Instantly share code, notes, and snippets.

@liam-lime
Last active February 6, 2019 10:42
Show Gist options
  • Save liam-lime/c6eb2b83016b8226656bfbcd9643b4fe to your computer and use it in GitHub Desktop.
Save liam-lime/c6eb2b83016b8226656bfbcd9643b4fe to your computer and use it in GitHub Desktop.
WP: Получить массив запросов к $wpdb
/*
Чтобы отобразить массив запросов в вашей теме,
добавьте следующий код в любой файл шаблона темы:
*/
if ( current_user_can( 'manage_options' ) ) {
global $wpdb;
print_r( $wpdb->queries );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment